TutorSupplyProfile constructor

TutorSupplyProfile({
  1. List<int> teachingFrequency = const [],
  2. List<int> qualifications = const [],
  3. bool? needsQualification,
  4. int? tutor,
  5. List<ProfileAttachment> attachments = const [],
})

Returns a new TutorSupplyProfile instance.

Implementation

TutorSupplyProfile({
  this.teachingFrequency = const [],
  this.qualifications = const [],
  this.needsQualification,
  this.tutor,
  this.attachments = const [],
});