decode method

  1. @override
RuntimeApiMethodParamMetadataV15 decode(
  1. Input input
)
override

Implementation

@override
RuntimeApiMethodParamMetadataV15 decode(Input input) {
  final name = StrCodec.codec.decode(input);
  final typeId = CompactCodec.codec.decode(input);

  return RuntimeApiMethodParamMetadataV15(name: name, typeId: typeId);
}