JobApplication constructor

JobApplication({
  1. int? id,
  2. DateTime? appliedAt,
  3. DateTime? rejectedAt,
  4. DateTime? acceptedAt,
  5. String? tutorMessage,
  6. required JobPostShort jobPost,
  7. TutorProfileMinimal? tutor,
  8. String? status,
  9. CustomerProfile? student,
})

Returns a new JobApplication instance.

Implementation

JobApplication({
  this.id,
  this.appliedAt,
  this.rejectedAt,
  this.acceptedAt,
  this.tutorMessage,
  required this.jobPost,
  this.tutor,
  this.status,
  this.student,
});