IOSSettings constructor

const IOSSettings({
  1. LocationAccuracy accuracy = LocationAccuracy.NAVIGATION,
  2. double distanceFilter = 0,
  3. bool showsBackgroundLocationIndicator = false,
  4. bool stopWithTerminate = false,
})

Implementation

const IOSSettings({
  super.accuracy = LocationAccuracy.NAVIGATION,
  super.distanceFilter = 0,
  this.showsBackgroundLocationIndicator = false,
  this.stopWithTerminate = false,
});