LocationConfig constructor

LocationConfig({
  1. int? desiredAccuracy,
  2. double? distanceFilter,
  3. double? maxAcceptableAccuracy,
  4. double? maxAcceptableSpeedAccuracy,
  5. int? locationUpdateInterval,
  6. int? fastestLocationUpdateInterval,
})

Implementation

LocationConfig({
  this.desiredAccuracy,
  this.distanceFilter,
  this.maxAcceptableAccuracy,
  this.maxAcceptableSpeedAccuracy,
  this.locationUpdateInterval,
  this.fastestLocationUpdateInterval,
});