decode method

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

Implementation

@override
RuntimeApiMetadataV15 decode(Input input) {
  final name = StrCodec.codec.decode(input);
  final methods = SequenceCodec(RuntimeApiMethodMetadataV15.codec).decode(input);
  final docs = SequenceCodec(StrCodec.codec).decode(input);

  return RuntimeApiMetadataV15(name: name, methods: methods, docs: docs);
}