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