toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final delimiter = this.delimiter;
  final encoding = this.encoding;
  final headerRows = this.headerRows;
  final quote = this.quote;
  final typeInferenceDisabled = this.typeInferenceDisabled;
  return {
    'delimiter': ?delimiter,
    'encoding': ?encoding,
    'headerRows': ?headerRows,
    'quote': ?quote,
    'typeInferenceDisabled': ?typeInferenceDisabled,
  };
}