BMFRouteLine constructor

BMFRouteLine({
  1. int? distance,
  2. BMFTime? duration,
  3. BMFRouteNode? starting,
  4. BMFRouteNode? terminal,
  5. String? title,
})

有参构造

Implementation

BMFRouteLine({
  this.distance,
  this.duration,
  this.starting,
  this.terminal,
  this.title,
});