Path constructor

Path({
  1. num? restriction,
  2. String? polyline,
  3. num? distance,
  4. List<Steps>? steps,
  5. num? totalTrafficLights,
  6. num? duration,
  7. String? strategy,
  8. num? tollDistance,
  9. num? tolls,
})

Implementation

Path(
    {this.restriction,
      this.polyline,
      this.distance,
      this.steps,
      this.totalTrafficLights,
      this.duration,
      this.strategy,
      this.tollDistance,
      this.tolls});