FeedbackSerialCourse constructor

FeedbackSerialCourse({
  1. int? id,
  2. String? tutor,
  3. User? customer,
  4. String? subject,
})

Returns a new FeedbackSerialCourse instance.

Implementation

FeedbackSerialCourse({
  this.id,
  this.tutor,
  this.customer,
  this.subject,
});