pushBigint method

void pushBigint(
  1. BigInt value
)

Append a BigInt value with a specified major tag to the byte sequence in the buffer.

Implementation

void pushBigint(BigInt value) {
  pushBytes(BigintUtils.toBytes(value, length: 8));
}