LessonViewerScreen constructor

const LessonViewerScreen({
  1. Key? key,
  2. required String topicId,
  3. String? topicTitle,
  4. required String domainSlug,
})

Implementation

const LessonViewerScreen({
  super.key,
  required this.topicId,
  this.topicTitle,
  required this.domainSlug,
});