getBigInt method

BigInt getBigInt(
  1. int length
)

Implementation

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