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