toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final columns = this.columns;
final escapeCharacter = this.escapeCharacter;
final fieldDelimiter = this.fieldDelimiter;
final quoteCharacter = this.quoteCharacter;
final table = this.table;
return {
'columns': ?columns,
'escapeCharacter': ?escapeCharacter,
'fieldDelimiter': ?fieldDelimiter,
'quoteCharacter': ?quoteCharacter,
'table': ?table,
};
}