CustomerJobPostCreate constructor

CustomerJobPostCreate({
  1. int? id,
  2. int? createdBy,
  3. required String clientName,
  4. required String clientEmail,
  5. String clientPhoneNumber = '',
  6. String? postcode,
  7. required String fullAddress,
  8. int? subject,
  9. int? level,
  10. String? description,
  11. List<JobPostAvailability> studentAvailability = const [],
  12. List<int> studentPersonality = const [],
  13. int? priceMin,
  14. int? priceMax,
  15. List<String> tags = const [],
})

Returns a new CustomerJobPostCreate instance.

Implementation

CustomerJobPostCreate({
  this.id,
  this.createdBy,
  required this.clientName,
  required this.clientEmail,
  this.clientPhoneNumber = '',
  this.postcode,
  required this.fullAddress,
  this.subject,
  this.level,
  this.description,
  this.studentAvailability = const [],
  this.studentPersonality = const [],
  this.priceMin,
  this.priceMax,
  this.tags = const [],
});