UVehicleCreateParams constructor

UVehicleCreateParams({
  1. required String licencePlate,
  2. required List<int> tags,
  3. String? id,
  4. String? title,
  5. String? brand,
  6. String? color,
  7. String? detail1,
  8. String? detail2,
  9. String? creatorId,
  10. List<String>? adminUserIds,
})

Implementation

UVehicleCreateParams({
  required this.licencePlate,
  required this.tags,
  this.id,
  this.title,
  this.brand,
  this.color,
  this.detail1,
  this.detail2,
  this.creatorId,
  this.adminUserIds,
});