ExportOptions constructor

ExportOptions({
  1. required ExportOptionsOutputFormatEnum outputFormat,
  2. bool? excludePreviouslyExported,
  3. DateTime? createdEarliestTime,
  4. DateTime? createdOldestTime,
  5. String? filter,
  6. String? listSeparatorToken,
})

Returns a new ExportOptions instance.

Implementation

ExportOptions({
  required this.outputFormat,
  this.excludePreviouslyExported,
  this.createdEarliestTime,
  this.createdOldestTime,
  this.filter,
  this.listSeparatorToken,
});