Step constructor

Step({
  1. required List<Intersection> intersections,
  2. required Maneuver maneuver,
  3. required String name,
  4. required double duration,
  5. required double distance,
  6. required String drivingSide,
  7. required double weight,
  8. required String mode,
  9. required String geometry,
})

Implementation

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