bytesToUnsignedInt function

BigInt bytesToUnsignedInt(
  1. Uint8List bytes
)

Legacy bytesToUnsignedInt compatibility

Implementation

BigInt bytesToUnsignedInt(Uint8List bytes) {
  return BytesUtils.bytesToBigInt(bytes);
}