CsvOptions constructor

CsvOptions({
  1. bool? allowJaggedRows,
  2. bool? allowQuotedNewlines,
  3. String? encoding,
  4. String? fieldDelimiter,
  5. String? nullMarker,
  6. List<String>? nullMarkers,
  7. bool? preserveAsciiControlCharacters,
  8. String? quote,
  9. String? skipLeadingRows,
  10. String? sourceColumnMatch,
})

Implementation

CsvOptions({
  this.allowJaggedRows,
  this.allowQuotedNewlines,
  this.encoding,
  this.fieldDelimiter,
  this.nullMarker,
  this.nullMarkers,
  this.preserveAsciiControlCharacters,
  this.quote,
  this.skipLeadingRows,
  this.sourceColumnMatch,
});