LocationQuery constructor

const LocationQuery({
  1. DateTime? from,
  2. DateTime? to,
  3. double? minAccuracy,
  4. double? maxAccuracy,
  5. bool? isMoving,
  6. LocationBounds? bounds,
  7. int? limit,
  8. int offset = 0,
  9. LocationSortOrder sortOrder = LocationSortOrder.newestFirst,
})

Creates a location query.

Implementation

const LocationQuery({
  this.from,
  this.to,
  this.minAccuracy,
  this.maxAccuracy,
  this.isMoving,
  this.bounds,
  this.limit,
  this.offset = 0,
  this.sortOrder = LocationSortOrder.newestFirst,
});