DrivePath constructor

DrivePath({
  1. num? restriction,
  2. List<Steps>? steps,
  3. String? strategy,
  4. num? tollDistance,
  5. num? totalDuration,
  6. num? totalDistance,
  7. num? tolls,
  8. num? totalTrafficlights,
})

Implementation

DrivePath({
  this.restriction,
  this.steps,
  this.strategy,
  this.tollDistance,
  this.totalDuration,
  this.totalDistance,
  this.tolls,
  this.totalTrafficlights,
});