bytesToInt function

BigInt bytesToInt(
  1. List<int> bytes
)

Converts the bytes from that list (big endian) to a BigInt.

Implementation

// BigInt bytesToInt(List<int> bytes) => p_utils.decodeBigInt(bytes);
BigInt bytesToInt(List<int> bytes) => p_utils.decodeBigIntWithSign(1, bytes);