decode method
Implementation
@override
PalletEventMetadataV16 decode(Input input) {
final type = CompactCodec.codec.decode(input);
final deprecationInfo = EnumDeprecationInfo.codec.decode(input);
return PalletEventMetadataV16(type: type, deprecationInfo: deprecationInfo);
}