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) => decodeBigInt(bytes, endian: Endian.big);