NavigationRequest constructor

NavigationRequest({
  1. int? distanceToGoalThreshold,
  2. int? outsideRouteThreshold,
  3. int? distanceToIgnoreFirstIndication,
  4. int? distanceToFloorChangeThreshold,
  5. int? distanceToChangeIndicationThreshold,
  6. int? indicationsInterval,
  7. int? timeToFirstIndication,
  8. int? roundIndicationsStep,
  9. int? timeToIgnoreUnexpectedFloorChanges,
  10. bool? ignoreLowQualityLocations,
})

Configure the navigation parameters.

Implementation

NavigationRequest({
  this.distanceToGoalThreshold,
  this.outsideRouteThreshold,
  this.distanceToIgnoreFirstIndication,
  this.distanceToFloorChangeThreshold,
  this.distanceToChangeIndicationThreshold,
  this.indicationsInterval,
  this.timeToFirstIndication,
  this.roundIndicationsStep,
  this.timeToIgnoreUnexpectedFloorChanges,
  this.ignoreLowQualityLocations,
});