inherit method
      
DecodingContext
inherit(
    
- DecodingContext context
inherited
    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
DecodingContext inherit(DecodingContext context) {
  return context.inherit();
}