Enquiry constructor

Enquiry({
  1. int? id,
  2. List<int> tutors = const [],
  3. int? subjectlevel,
  4. required String postcode,
  5. String? messageToTutor,
  6. int? jobPost,
})

Returns a new Enquiry instance.

Implementation

Enquiry({
  this.id,
  this.tutors = const [],
  this.subjectlevel,
  required this.postcode,
  this.messageToTutor,
  this.jobPost,
});