getBigUint method

BigInt getBigUint(
  1. int length
)

Implementation

BigInt getBigUint(final int length) {
  final BigInt value = buffer.getBigUint(offset, length);
  offset += length;
  return value;
}