writeBigInt method

int writeBigInt(
  1. BigInt n
)

Writes a BigInt. See BigIntExtension.toBytes for encoding description.

Implementation

int writeBigInt(BigInt n) {
  return n.writeTo(this);
}