Options constructor

const Options({
  1. ApprovalScrubber scrubber = const ScrubNothing(),
  2. bool approveResult = false,
  3. Comparator comparator = const FileComparator(),
  4. Reporter reporter = const CommandLineReporter(),
  5. bool deleteReceivedFile = true,
  6. Namer? namer,
  7. bool logErrors = true,
  8. bool logResults = true,
  9. bool includeClassNameDuringSerialization = true,
})

Implementation

const Options({
  this.scrubber = const ScrubNothing(),
  this.approveResult = false,
  this.comparator = const FileComparator(),
  this.reporter = const CommandLineReporter(),
  this.deleteReceivedFile = true,
  this.namer,
  this.logErrors = true,
  this.logResults = true,
  this.includeClassNameDuringSerialization = true,
});