PatchedTutorReview constructor

PatchedTutorReview({
  1. int? id,
  2. User? customer,
  3. User? tutor,
  4. bool? showCustomerFeedbackOnSite,
  5. SimpleSubjectLevel? subject,
  6. String? customerFeedbackNotes,
  7. CustomerFeedbackStatusEnum? customerFeedbackStatus,
  8. DateTime? customerFeedbackCreatedAt,
  9. int? customerFeedbackRating,
  10. bool? customerFeedbackExcellent,
})

Returns a new PatchedTutorReview instance.

Implementation

PatchedTutorReview({
  this.id,
  this.customer,
  this.tutor,
  this.showCustomerFeedbackOnSite,
  this.subject,
  this.customerFeedbackNotes,
  this.customerFeedbackStatus,
  this.customerFeedbackCreatedAt,
  this.customerFeedbackRating,
  this.customerFeedbackExcellent,
});