decodeIterated method
Decodes the data for the given key or id as an iterated collection of nested data.
Implementation
@override
IteratedDecoder decodeIterated(String key, {int? id}) {
var d = decoders[key] ?? decoders[id];
return d!.clone().decodeIterated();
}