decode method
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);
}