bytesToInt function

BigInt bytesToInt(
  1. Uint8List bytes
)

Implementation

BigInt bytesToInt(Uint8List bytes) {
  return decodeBigIntWithSign(1, bytes);
}