toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (allowJaggedRows != null) 'allowJaggedRows': allowJaggedRows!,
  if (allowQuotedNewlines != null)
    'allowQuotedNewlines': allowQuotedNewlines!,
  if (encoding != null) 'encoding': encoding!,
  if (fieldDelimiter != null) 'fieldDelimiter': fieldDelimiter!,
  if (nullMarker != null) 'nullMarker': nullMarker!,
  if (nullMarkers != null) 'nullMarkers': nullMarkers!,
  if (preserveAsciiControlCharacters != null)
    'preserveAsciiControlCharacters': preserveAsciiControlCharacters!,
  if (quote != null) 'quote': quote!,
  if (skipLeadingRows != null) 'skipLeadingRows': skipLeadingRows!,
  if (sourceColumnMatch != null) 'sourceColumnMatch': sourceColumnMatch!,
};