IosLocationOptions constructor

const IosLocationOptions({
  1. bool allowsBackgroundLocationUpdates = false,
  2. bool showsBackgroundLocationIndicator = false,
  3. bool pausesLocationUpdatesAutomatically = true,
  4. bool enableSignificantLocationChanges = false,
  5. bool enableVisitMonitoring = false,
  6. String activityType = 'other',
  7. bool geofenceNotifyOnEntry = true,
  8. bool geofenceNotifyOnExit = true,
})

Creates iOS location customization options.

Implementation

const IosLocationOptions({
  this.allowsBackgroundLocationUpdates = false,
  this.showsBackgroundLocationIndicator = false,
  this.pausesLocationUpdatesAutomatically = true,
  this.enableSignificantLocationChanges = false,
  this.enableVisitMonitoring = false,
  this.activityType = 'other',
  this.geofenceNotifyOnEntry = true,
  this.geofenceNotifyOnExit = true,
});