decode method
Implementation
@override
RuntimeApiMethodParamMetadataV15 decode(Input input) {
final name = StrCodec.codec.decode(input);
final typeId = CompactCodec.codec.decode(input);
return RuntimeApiMethodParamMetadataV15(name: name, typeId: typeId);
}