CsvImportOptions constructor

CsvImportOptions({
  1. List<String>? columns,
  2. String? escapeCharacter,
  3. String? fieldDelimiter,
  4. String? quoteCharacter,
  5. String? table,
})

Implementation

CsvImportOptions({
  this.columns,
  this.escapeCharacter,
  this.fieldDelimiter,
  this.quoteCharacter,
  this.table,
});