BMFDrivingRouteLine constructor

BMFDrivingRouteLine(
  1. {int distance,
  2. BMFTime duration,
  3. BMFRouteNode starting,
  4. BMFRouteNode terminal,
  5. String title,
  6. List<BMFDrivingStep> steps,
  7. List<BMFPlanNode> wayPoints,
  8. int lightNum,
  9. int congestionMetres,
  10. 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);