inherit method

  1. @override
DecodingContext inherit(
  1. DecodingContext context
)

This will inherit the decoding context when giving over decoding to a subclass.

Mappers may override this method to modify the type arguments used for decoding.

Implementation

@override
DecodingContext inherit(DecodingContext context) {
  return context.inherit(args: () => [SplitOptions]);
}