RouteStep constructor

RouteStep(
  1. String? name,
  2. String? instructions,
  3. double? distance,
  4. double? expectedTravelTime,
)

Implementation

RouteStep(
  this.name,
  this.instructions,
  this.distance,
  this.expectedTravelTime,
);