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