BMFDrivingRouteLine constructor
- {int? distance,
- BMFTime? duration,
- BMFRouteNode? starting,
- BMFRouteNode? terminal,
- String? title,
- List<
BMFDrivingStep> ? steps, - List<
BMFPlanNode> ? wayPoints, - int? lightNum,
- int? congestionMetres,
- int? taxiFares}
有参构造
Implementation
BMFDrivingRouteLine({
int? distance,
BMFTime? duration,
BMFRouteNode? starting,
BMFRouteNode? terminal,
String? title,
this.steps,
this.wayPoints,
this.lightNum,
this.congestionMetres,
this.taxiFares,
}) : super(
distance: distance,
duration: duration,
starting: starting,
terminal: terminal,
title: title);