DrivingOptions constructor

const DrivingOptions({
  1. double? initialAzimuth,
  2. int? routesCount,
  3. bool? avoidTolls,
  4. bool? avoidUnpaved,
  5. bool? avoidPoorConditions,
})

Implementation

const DrivingOptions({
  this.initialAzimuth,
  this.routesCount,
  this.avoidTolls,
  this.avoidUnpaved,
  this.avoidPoorConditions
});