Step constructor

const Step({
  1. Distance? distance,
  2. DirectionsDuration? duration,
  3. GeoCoord? endLocation,
  4. String? instructions,
  5. List<GeoCoord?>? path,
  6. GeoCoord? startLocation,
  7. List<Step>? steps,
  8. TransitDetails? transit,
  9. TravelMode? travelMode,
  10. OverviewPolyline? polyline,
  11. String? maneuver,
})

Implementation

const Step({
  this.distance,
  this.duration,
  this.endLocation,
  this.instructions,
  this.path,
  this.startLocation,
  this.steps,
  this.transit,
  this.travelMode,
  this.polyline,
  this.maneuver,
});