BMFMassTransitSubStep constructor Null safety

BMFMassTransitSubStep(
  1. {int? distance,
  2. int? duration,
  3. List? points,
  4. int? pointsCount,
  5. String? name,
  6. dynamic entraceCoor,
  7. dynamic exitCoor,
  8. String? instructions,
  9. dynamic stepType,
  10. dynamic 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,
      );