VehicleBody constructor

VehicleBody({
  1. String? licensePlate,
  2. String? brand,
  3. String? model,
  4. String? year,
  5. String? chauffeurName,
  6. String? chauffeurSurname,
  7. String? chauffeurPhoneNumber,
  8. String? storeId,
})

Implementation

VehicleBody({
  this.licensePlate,
  this.brand,
  this.model,
  this.year,
  this.chauffeurName,
  this.chauffeurSurname,
  this.chauffeurPhoneNumber,
  this.storeId,
});