decode method

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

Implementation

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