TutorSerialCourse constructor

TutorSerialCourse({
  1. int? id,
  2. DateTime? startDate,
  3. DateTime? endDate,
  4. String? subject,
  5. int? level,
  6. int? numWeeks,
  7. int? maxSeats,
  8. required int weeklyPriceCents,
  9. required String courseName,
  10. String? description,
  11. String? image,
  12. required String status,
  13. String? customer,
  14. int? tutor,
  15. String? courses,
  16. required String timeZone,
  17. bool? publishStatus,
  18. String? chat,
  19. String? feedbackId,
})

Returns a new TutorSerialCourse instance.

Implementation

TutorSerialCourse({
  this.id,
  this.startDate,
  this.endDate,
  this.subject,
  this.level,
  this.numWeeks,
  this.maxSeats,
  required this.weeklyPriceCents,
  required this.courseName,
  this.description,
  this.image,
  required this.status,
  this.customer,
  this.tutor,
  this.courses,
  required this.timeZone,
  this.publishStatus,
  this.chat,
  this.feedbackId,
});