ImportContextCsvImportOptions constructor

ImportContextCsvImportOptions({
  1. List<String>? columns,
  2. String? escapeCharacter,
  3. String? fieldsTerminatedBy,
  4. String? linesTerminatedBy,
  5. String? quoteCharacter,
  6. String? table,
})

Implementation

ImportContextCsvImportOptions({
  this.columns,
  this.escapeCharacter,
  this.fieldsTerminatedBy,
  this.linesTerminatedBy,
  this.quoteCharacter,
  this.table,
});