LessonData constructor

const LessonData({
  1. required int id,
  2. required String title,
  3. required String titleInEnglish,
  4. required int seqNum,
  5. required bool locked,
  6. required bool published,
  7. DateTime? publishDate,
  8. String? imagePath,
  9. required int bookId,
  10. String? description,
  11. String? note,
})

Implementation

const LessonData({
  required this.id,
  required this.title,
  required this.titleInEnglish,
  required this.seqNum,
  required this.locked,
  required this.published,
  this.publishDate,
  this.imagePath,
  required this.bookId,
  this.description,
  this.note,
});