pickImage method

Future<String?> pickImage()

Launches the native gallery picker and returns the path of the selected image.

Implementation

Future<String?> pickImage() async {
  return await FlutterCropCameraPlatform.instance.pickImage();
}