decoder method
The mapping method to decode value to an instance of this mappers type.
Implementation
@override
T decoder(Object value, DecodingContext context) {
  _container = context.container;
  try {
    return _decode(value, context);
  } finally {
    _container = null;
  }
}