decodeMapped method
Decodes the data for the given key or id as a direct-access collection of key-value pairs of nested data.
Implementation
@override
MappedDecoder decodeMapped(String key, {int? id}) {
var d = decoders[key] ?? decoders[id];
return d!.clone().decodeMapped();
}