DrivingVehicleRestriction constructor

const DrivingVehicleRestriction({
  1. double? weightLimit,
  2. double? axleWeightLimit,
  3. double? maxWeightLimit,
  4. double? heightLimit,
  5. double? widthLimit,
  6. double? lengthLimit,
  7. double? payloadLimit,
  8. int? minEcoClass,
  9. bool? trailerNotAllowed,
  10. bool? legal,
})

Implementation

const DrivingVehicleRestriction({
  this.weightLimit,
  this.axleWeightLimit,
  this.maxWeightLimit,
  this.heightLimit,
  this.widthLimit,
  this.lengthLimit,
  this.payloadLimit,
  this.minEcoClass,
  this.trailerNotAllowed,
  this.legal,
});