encodeTo method

  1. @override
void encodeTo(
  1. BigInt value,
  2. Output output
)
override

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);
}