loadFromCamera static method
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);
}