decode method

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

Implementation

@override
BigInt decode(Input input) {
  final low = U128Codec.codec.decode(input);
  final high = U128Codec.codec.decode(input);
  return low | (high << 128);
}