bytesToUnsignedInt function

BigInt bytesToUnsignedInt(
  1. Uint8List bytes
)

This method converts bytes to an unsigned integer so that it can be used more easily by our pointycastle dependency

Implementation

BigInt bytesToUnsignedInt(Uint8List bytes) {
  return p_utils.decodeBigIntWithSign(1, bytes);
}