toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final charset = this.charset;
final fieldNames = this.fieldNames;
final rowNumber = this.rowNumber;
final separator = this.separator;
return {
'charset': ?charset,
'fieldNames': ?fieldNames,
'rowNumber': ?rowNumber,
'separator': ?separator,
};
}