JobPostList constructor

JobPostList({
  1. int? id,
  2. String? subject,
  3. String? level,
  4. String? icon,
  5. String? location,
  6. List<JobApplicationTutorMinimal> applications = const [],
})

Returns a new JobPostList instance.

Implementation

JobPostList({
  this.id,
  this.subject,
  this.level,
  this.icon,
  this.location,
  this.applications = const [],
});