toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowJaggedRows = this.allowJaggedRows;
  final allowQuotedNewlines = this.allowQuotedNewlines;
  final encoding = this.encoding;
  final fieldDelimiter = this.fieldDelimiter;
  final nullMarker = this.nullMarker;
  final nullMarkers = this.nullMarkers;
  final preserveAsciiControlCharacters = this.preserveAsciiControlCharacters;
  final quote = this.quote;
  final skipLeadingRows = this.skipLeadingRows;
  final sourceColumnMatch = this.sourceColumnMatch;
  return {
    'allowJaggedRows': ?allowJaggedRows,
    'allowQuotedNewlines': ?allowQuotedNewlines,
    'encoding': ?encoding,
    'fieldDelimiter': ?fieldDelimiter,
    'nullMarker': ?nullMarker,
    'nullMarkers': ?nullMarkers,
    'preserveAsciiControlCharacters': ?preserveAsciiControlCharacters,
    'quote': ?quote,
    'skipLeadingRows': ?skipLeadingRows,
    'sourceColumnMatch': ?sourceColumnMatch,
  };
}