decode method
Implementation
@override
TypeDefArray decode(Input input) {
final len = U32Codec.codec.decode(input);
final type = CompactCodec.codec.decode(input);
return TypeDefArray(length: len, type: type);
}
@override
TypeDefArray decode(Input input) {
final len = U32Codec.codec.decode(input);
final type = CompactCodec.codec.decode(input);
return TypeDefArray(length: len, type: type);
}