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