BMFTransitRoutePlanOption constructor
- {required BMFPlanNode from,
- required BMFPlanNode to,
- String? city,
- BMFTransitPolicy? transitPolicy = BMFTransitPolicy.TIME_FIRST}
有参构造
Implementation
BMFTransitRoutePlanOption({
required BMFPlanNode from,
required BMFPlanNode to,
this.city,
this.transitPolicy = BMFTransitPolicy.TIME_FIRST,
}) : super(from: from, to: to);