decode method

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

Implementation

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