JobApplicationCreate constructor

JobApplicationCreate({
  1. int? id,
  2. DateTime? appliedAt,
  3. required int jobPost,
  4. bool? isProfileComplete,
  5. required String tutorMessage,
})

Returns a new JobApplicationCreate instance.

Implementation

JobApplicationCreate({
  this.id,
  this.appliedAt,
  required this.jobPost,
  this.isProfileComplete,
  required this.tutorMessage,
});