JobApplication constructor
JobApplication({
- int? id,
- DateTime? appliedAt,
- DateTime? rejectedAt,
- DateTime? acceptedAt,
- String? tutorMessage,
- required JobPostShort jobPost,
- TutorProfileMinimal? tutor,
- String? status,
- 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,
});