LocationSettings constructor

const LocationSettings({
  1. bool provideAccuracy = false,
  2. Range? accuracy,
  3. TimeInterval? locationTimeInterval,
  4. bool provideSpeed = false,
  5. double speed = 0.0,
  6. bool provideHeading = false,
  7. Range? headingError,
  8. LocationError? locationError,
  9. bool provideWheelSpeed = false,
  10. TimeInterval? wheelSpeedTimeInterval,
})

Implementation

const LocationSettings({
  this.provideAccuracy = false,
  this.accuracy,
  this.locationTimeInterval,
  this.provideSpeed = false,
  this.speed = 0.0,
  this.provideHeading = false,
  this.headingError,
  this.locationError,
  this.provideWheelSpeed = false,
  this.wheelSpeedTimeInterval,
});