JobApplicationTutorMinimal constructor

JobApplicationTutorMinimal({
  1. int? id,
  2. String? photo,
  3. String? name,
  4. DateTime? rejectedAt,
  5. String? isActive,
})

Returns a new JobApplicationTutorMinimal instance.

Implementation

JobApplicationTutorMinimal({
  this.id,
  this.photo,
  this.name,
  this.rejectedAt,
  this.isActive,
});