BMFRidingRoutePlanOption constructor

BMFRidingRoutePlanOption(
  1. {required BMFPlanNode from,
  2. required BMFPlanNode to,
  3. int? ridingType = 0,
  4. List<BMFPlanNode>? wayPointsArray,
  5. int? roadPrefer = 0}
)

有参构造

Implementation

BMFRidingRoutePlanOption({
  required BMFPlanNode from,
  required BMFPlanNode to,
  this.ridingType = 0,
  this.wayPointsArray,
  this.roadPrefer = 0,
}) : super(from: from, to: to);