resolve method

ResolvedDecodeOptions resolve()

Resolves decode options with defaults.

Implementation

ResolvedDecodeOptions resolve() {
  assert(flatMapSeparator.isNotEmpty, 'flatMapSeparator must not be empty');
  return ResolvedDecodeOptions(
    indent: indent,
    strict: strict,
    enforceFlatMap: enforceFlatMap,
    flatMapSeparator: flatMapSeparator,
  );
}