DecodeOptions constructor

const DecodeOptions({
  1. int indent = 2,
  2. bool strict = true,
  3. bool enforceFlatMap = false,
  4. String flatMapSeparator = '_',
})

Implementation

const DecodeOptions({
  this.indent = 2,
  this.strict = true,
  this.enforceFlatMap = false,
  this.flatMapSeparator = '_',
}) : assert(indent > 0, 'indent must be positive');