CustomerJobPostCreate constructor
CustomerJobPostCreate({
- int? id,
- int? createdBy,
- required String clientName,
- required String clientEmail,
- String clientPhoneNumber = '',
- String? postcode,
- required String fullAddress,
- int? subject,
- int? level,
- String? description,
- List<
JobPostAvailability> studentAvailability = const [], - List<
int> studentPersonality = const [], - int? priceMin,
- int? priceMax,
- 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 [],
});