DriveRouteResult constructor

DriveRouteResult({
  1. List<DrivePath>? paths,
  2. LatLng? startPos,
  3. LatLng? targetPos,
  4. num? taxiCost,
})

Implementation

DriveRouteResult({
  this.paths,
  this.startPos,
  this.targetPos,
  this.taxiCost,
});