CsvOptions constructor

CsvOptions({
  1. bool? allowJaggedRows,
  2. bool? allowQuotedNewlines,
  3. String? encoding,
  4. String? fieldDelimiter,
  5. String? nullMarker,
  6. bool? preserveAsciiControlCharacters,
  7. String? quote,
  8. String? skipLeadingRows,
})

Implementation

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