PatchedTutorFeedback constructor

PatchedTutorFeedback({
  1. int? booking,
  2. DateTime? created,
  3. int? engagementRating,
  4. int? homeworkRating,
  5. int? effortRating,
  6. String? comment,
})

Returns a new PatchedTutorFeedback instance.

Implementation

PatchedTutorFeedback({
  this.booking,
  this.created,
  this.engagementRating,
  this.homeworkRating,
  this.effortRating,
  this.comment,
});