DrivingVehicleOptions constructor

const DrivingVehicleOptions({
  1. DrivingVehicleType vehicleType = directions_driving_vehicle_type.DrivingVehicleType.Default,
  2. double? weight,
  3. double? axleWeight,
  4. double? maxWeight,
  5. double? height,
  6. double? width,
  7. double? length,
  8. double? payload,
  9. int? ecoClass,
  10. bool? hasTrailer,
  11. bool? buswayPermitted,
})

Implementation

const DrivingVehicleOptions({
  this.vehicleType =
      directions_driving_vehicle_type.DrivingVehicleType.Default,
  this.weight,
  this.axleWeight,
  this.maxWeight,
  this.height,
  this.width,
  this.length,
  this.payload,
  this.ecoClass,
  this.hasTrailer,
  this.buswayPermitted,
});