TutorReference constructor

TutorReference({
  1. Tutor? tutor,
  2. int? rating,
  3. String? comment,
  4. String? firstName,
  5. String? lastName,
  6. String? email,
  7. String? relation,
})

Returns a new TutorReference instance.

Implementation

TutorReference({
  this.tutor,
  this.rating,
  this.comment,
  this.firstName,
  this.lastName,
  this.email,
  this.relation,
});