RoutePlanParam constructor

RoutePlanParam({
  1. required LatLng? from,
  2. required LatLng? to,
  3. int? mode = 0,
  4. List<LatLng>? passedByPoints,
  5. List<List<LatLng>>? avoidPolygons,
  6. String? avoidRoad,
})

Implementation

RoutePlanParam({
  required this.from,
  required this.to,
  this.mode = 0,
  this.passedByPoints,
  this.avoidPolygons,
  this.avoidRoad,
});