Launches the native gallery picker and returns the path of the selected image.
Future<String?> pickImage() async { final String? path = await _channel.invokeMethod('pickImage'); return path; }