fromUint8List static method
Creates a BigInt from an array of bytes.
Implementation
static BigInt fromUint8List(final Iterable<int> bytes,
    [final Endian endian = Endian.little]) {
  return Buffer.fromList(bytes).getBigUint(0, bytes.length, endian);
}