RouteLeg constructor

RouteLeg(
  1. String? profileIdentifier,
  2. String? name,
  3. double? distance,
  4. double? expectedTravelTime,
  5. WayPoint? source,
  6. WayPoint? destination,
  7. List<RouteStep>? steps,
)

Implementation

RouteLeg(this.profileIdentifier, this.name, this.distance,
    this.expectedTravelTime, this.source, this.destination, this.steps);