setExifPreferences static method

Future<bool> setExifPreferences(
  1. ExifPreferences savedExifData
)

set exif preferences when a photo is saved

The GPS value can be null on Android if:

  • Location is disabled on the phone
  • ExifPreferences.saveGPSLocation is false
  • Permission ACCESS_FINE_LOCATION has not been granted

Implementation

static Future<bool> setExifPreferences(ExifPreferences savedExifData) {
  return CameraInterface().setExifPreferences(savedExifData);
}