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