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