VehicleDTO constructor

VehicleDTO({
  1. String? id,
  2. String? createdAt,
  3. String? updatedAt,
  4. bool? isActive,
  5. bool? isDeleted,
  6. String? licensePlate,
  7. String? brand,
  8. String? model,
  9. String? year,
  10. String? chauffeurName,
  11. String? chauffeurSurname,
  12. String? chauffeurPhoneNumber,
})

Implementation

VehicleDTO(
    {super.id,
    super.createdAt,
    super.updatedAt,
    super.isActive,
    super.isDeleted,
    this.licensePlate,
    this.brand,
    this.model,
    this.year,
    this.chauffeurName,
    this.chauffeurSurname,
    this.chauffeurPhoneNumber});