loadFromGallery static method

Future<Uint8List> loadFromGallery({
  1. double? widthMax,
  2. double? heightMax,
  3. int? quality,
})

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);
}