loadFromCamera static method

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

Loads an image using the local camera.

Implementation

static Future<Uint8List> loadFromCamera(
    {double? widthMax, double? heightMax, int? quality}) async {
  return await ImageLoad.loadImageCamera(
      widthMax: widthMax, heightMax: heightMax, quality: quality);
}