inherit method
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]);
}