removeGps static method

Future<bool> removeGps({
  1. required String path,
})

Remove GPS EXIF from a photo — useful if fake coordinates are detected.

Implementation

static Future<bool> removeGps({required String path}) async {
  final dynamic result =
      await _channel.invokeMethod('removeGps', {'path': path});
  return result == true || (result is String && result.isNotEmpty);
}