loadFromWeb static method
Loads an image from the given url.
Keep in mind to adjust the server CORS settings.
Implementation
static Future<Uint8List> loadFromWeb(
double widthMax, double heightMax, int quality, url) async {
return await ImageLoad.loadImageWeb(widthMax, heightMax, quality, url);
}