loadFromGallery static method
Loads an image from the local gallery.
Implementation
static Future<Uint8List> loadFromGallery(
{double? widthMax, double? heightMax, int? quality}) async {
return await ImageLoad.loadImageGallery(
widthMax: widthMax, heightMax: heightMax, quality: quality);
}