CSVOutput constructor

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

Implementation

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