pickImages method

Future<List<String>> pickImages()

Launches the native gallery picker and returns the paths of the selected images.

Implementation

Future<List<String>> pickImages() async {
  final List<String>? paths =
      await FlutterCropCameraPlatform.instance.pickImages();
  return paths ?? [];
}