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