decoder method

  1. @override
M decoder(
  1. Object value,
  2. DecodingContext context
)
override

The mapping method to decode value to an instance of this mappers type.

Implementation

@override
M decoder(Object value, DecodingContext context) {
  return _MapDecoder(this, context, value.checked<Map>()).decode();
}