decode method

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

Implementation

@override
CustomMetadataEntry decode(Input input) {
  final type = TypeIdCodec.codec.decode(input);
  final value = U8SequenceCodec.codec.decode(input);

  return CustomMetadataEntry(
    type: type,
    value: value,
  );
}