SchoolsupplyRequestTutor constructor

SchoolsupplyRequestTutor({
  1. required String name,
  2. required String email,
  3. String? postcode,
  4. String? phone,
  5. required String message,
  6. int? createdBy,
  7. required bool agreedToTerms,
  8. String? subjectLevel,
  9. int? id,
})

Returns a new SchoolsupplyRequestTutor instance.

Implementation

SchoolsupplyRequestTutor({
  required this.name,
  required this.email,
  this.postcode,
  this.phone,
  required this.message,
  this.createdBy,
  required this.agreedToTerms,
  this.subjectLevel,
  this.id,
});