Steps constructor

Steps({
  1. num? distance,
  2. num? duration,
  3. String? geometry,
  4. String? name,
  5. String? mode,
  6. Maneuver? maneuver,
  7. List<VoiceInstructions>? voiceInstructions,
  8. List<BannerInstructions>? bannerInstructions,
  9. String? drivingSide,
  10. num? weight,
  11. List<Intersections>? intersections,
  12. String? exits,
})

Implementation

Steps(
    {this.distance,
    this.duration,
    this.geometry,
    this.name,
    this.mode,
    this.maneuver,
    this.voiceInstructions,
    this.bannerInstructions,
    this.drivingSide,
    this.weight,
    this.intersections,
    this.exits});