UVehicleResponse constructor

UVehicleResponse({
  1. required String licencePlate,
  2. required List<int> tags,
  3. required String id,
  4. required UBaseJson jsonData,
  5. required DateTime createdAt,
  6. required List<String> adminUserIds,
  7. String? brand,
  8. String? title,
  9. String? color,
  10. UUserResponse? creator,
  11. String? creatorId,
})

Implementation

UVehicleResponse({
  required this.licencePlate,
  required this.tags,
  required this.id,
  required this.jsonData,
  required this.createdAt,
  required this.adminUserIds,
  this.brand,
  this.title,
  this.color,
  this.creator,
  this.creatorId,
});