TutorSerialCourse constructor
TutorSerialCourse({
- int? id,
- DateTime? startDate,
- DateTime? endDate,
- String? subject,
- int? level,
- int? numWeeks,
- int? maxSeats,
- required int weeklyPriceCents,
- required String courseName,
- String? description,
- String? image,
- required String status,
- String? customer,
- int? tutor,
- String? courses,
- required String timeZone,
- bool? publishStatus,
- String? chat,
- 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,
});