BMFMassTransitSubStep constructor

BMFMassTransitSubStep(
  1. {int distance,
  2. int duration,
  3. List<BMFCoordinate> points,
  4. int pointsCount,
  5. String name,
  6. BMFCoordinate entraceCoor,
  7. BMFCoordinate exitCoor,
  8. String instructions,
  9. BMFMassTransitType stepType,
  10. BMFBaseVehicleInfo vehicleInfo,
  11. List<BMFTrafficCondition> trafficConditions}
)

Implementation

BMFMassTransitSubStep(
    {int distance,
    int duration,
    List<BMFCoordinate> points,
    int pointsCount,
    String name,
    this.entraceCoor,
    this.exitCoor,
    this.instructions,
    this.stepType,
    this.vehicleInfo,
    this.trafficConditions})
    : super(
        distance: distance,
        duration: duration,
        points: points,
        pointsCount: pointsCount,
        name: name,
      );