beBuff2int static method
Implementation
static BigInt beBuff2int(Uint8List buff) {
BigInt res = BigInt.zero;
for (int i = 0; i < buff.length; i++) {
final n = BigInt.from(buff[buff.length - i - 1]);
res = res + (n << i * 8);
}
return res;
}