toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (delimiter != null) 'delimiter': delimiter!,
  if (encoding != null) 'encoding': encoding!,
  if (headerRows != null) 'headerRows': headerRows!,
  if (quote != null) 'quote': quote!,
  if (typeInferenceDisabled != null)
    'typeInferenceDisabled': typeInferenceDisabled!,
};