GeolocationState constructor

const GeolocationState({
  1. required bool enabled,
  2. bool isMoving = false,
  3. bool? schedulerEnabled,
  4. double? odometer,
  5. Location? location,
  6. JsonMap? extras,
})

Implementation

const GeolocationState({
  required this.enabled,
  this.isMoving = false,
  this.schedulerEnabled,
  this.odometer,
  this.location,
  this.extras,
});