CustomerFeedback constructor

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

Returns a new CustomerFeedback instance.

Implementation

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