bytesToInt function

BigInt bytesToInt(
  1. List<int> bytes
)

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

Implementation

BigInt bytesToInt(List<int> bytes) => p_utils.decodeBigInt(bytes);