PatchedCustomerFeedback constructor

PatchedCustomerFeedback({
  1. String? id,
  2. FeedbackBooking? booking,
  3. int? rating,
  4. String? comment,
  5. FeedbackSerialCourse? serialCourseCustomer,
})

Returns a new PatchedCustomerFeedback instance.

Implementation

PatchedCustomerFeedback({
  this.id,
  this.booking,
  this.rating,
  this.comment,
  this.serialCourseCustomer,
});