decode method

  1. @override
Object decode(
  1. Uint8List encoded, [
  2. int offset = 0
])
override

Implementation

@override
Object decode(Uint8List encoded, [int offset = 0]) {
  final bigInt = super.decode(encoded, offset) as BigInt;
  return bigIntToBytes(bigInt).hex;
}