toBigInt method

BigInt toBigInt()

Converts this byte array to a BigInt (big-endian interpretation).

Returns: BigInt representation of the byte array

Example:

final verifierKey = verifierKeyBytes.toBigInt();

Implementation

BigInt toBigInt() {
  return convertByteListToBigInt(this);
}