decode method
Implementation
@override
MethodInputEntryType decode(Input input) {
final name = StrCodec.codec.decode(input);
final type = TypeIdCodec.codec.decode(input);
return MethodInputEntryType(
name: name,
type: type,
);
}
@override
MethodInputEntryType decode(Input input) {
final name = StrCodec.codec.decode(input);
final type = TypeIdCodec.codec.decode(input);
return MethodInputEntryType(
name: name,
type: type,
);
}