decodeBigInt function
Implementation
BigInt decodeBigInt(List<int> bytes) {
BigInt result = new BigInt.from(0);
for (int i = 0; i < bytes.length; i++) {
result += new BigInt.from(bytes[bytes.length - i - 1]) << (8 * i);
}
return result;
}