toBigInt method

BigInt toBigInt()

Encodes this Uint8List to a BigInt using the big-endian conversion.

Implementation

BigInt toBigInt() {
  var bytes = this;
  var result = BigInt.from(0);
  for (var i = 0; i < bytes.length; i++) {
    result += BigInt.from(bytes[bytes.length - i - 1]) << (8 * i);
  }
  return result;
}