OptimizeRoute constructor

OptimizeRoute({
  1. String? vehicle,
  2. int? cost,
  3. List<OptimizeRouteStep>? steps,
  4. String? description,
  5. int? distance,
  6. int? duration,
  7. String? geometry,
  8. List<int>? pickup,
  9. List<int>? delivery,
  10. int? priority,
  11. int? service,
  12. int? vehicleOvertime,
  13. int? waitingTime,
  14. int? setup,
})

Implementation

OptimizeRoute({
  this.vehicle,
  this.cost,
  this.steps,
  this.description,
  this.distance,
  this.duration,
  this.geometry,
  this.pickup,
  this.delivery,
  this.priority,
  this.service,
  this.vehicleOvertime,
  this.waitingTime,
  this.setup,
});