JobPostView constructor

JobPostView({
  1. StatusC27Enum? status,
  2. JobTypeEnum? jobType,
  3. String? subject,
  4. String? level,
  5. DateTime? startDate,
  6. int? experience,
  7. String? duration,
  8. int? id,
  9. String? icon,
  10. String? description,
  11. String? appliedAt,
  12. String? location,
  13. bool? isOpen,
  14. String? slug,
  15. String? subjectLevelSlug,
  16. List<JobApplicationTutor> applications = const [],
  17. int? subjectId,
  18. int? levelId,
  19. String? postcode,
})

Returns a new JobPostView instance.

Implementation

JobPostView({
  this.status,
  this.jobType,
  this.subject,
  this.level,
  this.startDate,
  this.experience,
  this.duration,
  this.id,
  this.icon,
  this.description,
  this.appliedAt,
  this.location,
  this.isOpen,
  this.slug,
  this.subjectLevelSlug,
  this.applications = const [],
  this.subjectId,
  this.levelId,
  this.postcode,
});