intListToBigInt static method

BigInt intListToBigInt(
  1. List<int> bytes
)

Implementation

static BigInt intListToBigInt(List<int> bytes) {
  return BigInt.parse(hex.encode(bytes), radix: 16);
}