encodeTo method
Convert self to a slice and append it to the destination.
Implementation
@override
void encodeTo(BigInt value, Output output) {
U64Codec.codec
..encodeTo(value.toUnsigned(64), output)
..encodeTo((value >> 64).toUnsigned(64), output);
}