LocalChapterModel constructor

LocalChapterModel({
  1. required String chapter,
  2. int depth = 0,
  3. String htmlContent = '',
  4. bool isSectionTitle = false,
})

Implementation

LocalChapterModel({
  required this.chapter,
  this.depth = 0,
  this.htmlContent = '',
  this.isSectionTitle = false,
});