BMFTransitRoutePlanOption constructor Null safety

BMFTransitRoutePlanOption(
  1. {required dynamic from,
  2. required dynamic to,
  3. String? city,
  4. dynamic transitPolicy = BMFTransitPolicy.TIME_FIRST}
)

有参构造

Implementation

BMFTransitRoutePlanOption({
  required BMFPlanNode from,
  required BMFPlanNode to,
  this.city,
  this.transitPolicy: BMFTransitPolicy.TIME_FIRST,
}) : super(from: from, to: to);