pickImage method

Future<String?> pickImage()

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

Implementation

Future<String?> pickImage() async {
  final String? path = await _channel.invokeMethod('pickImage');
  return path;
}