Step constructor

Step({
  1. List<Intersection>? intersections,
  2. Maneuver? maneuver,
  3. String? name,
  4. double? weightTypical,
  5. double? durationTypical,
  6. double? duration,
  7. double? distance,
  8. DrivingSide? drivingSide,
  9. double? weight,
  10. Mode? mode,
  11. Geometry? geometry,
  12. String? destinations,
})

Implementation

Step({
  this.intersections,
  this.maneuver,
  this.name,
  this.weightTypical,
  this.durationTypical,
  this.duration,
  this.distance,
  this.drivingSide,
  this.weight,
  this.mode,
  this.geometry,
  this.destinations,
});