CustomerFeedback constructor
CustomerFeedback({
- String? id,
- FeedbackBooking? booking,
- int? rating,
- String? comment,
- FeedbackSerialCourse? serialCourseCustomer,
Returns a new CustomerFeedback instance.
Implementation
CustomerFeedback({
this.id,
this.booking,
this.rating,
this.comment,
this.serialCourseCustomer,
});