CSVOutput constructor

CSVOutput({
  1. String? fieldDelimiter,
  2. String? quoteCharacter,
  3. String? quoteEscapeCharacter,
  4. QuoteFields? quoteFields,
  5. String? recordDelimiter,
})

Implementation

CSVOutput({
  this.fieldDelimiter,
  this.quoteCharacter,
  this.quoteEscapeCharacter,
  this.quoteFields,
  this.recordDelimiter,
});