ChapterMark constructor

const ChapterMark({
  1. Key? key,
  2. required String mark,
  3. String? title,
})

Implementation

const ChapterMark({super.key, required this.mark, this.title});