SummaryArticle constructor

const SummaryArticle({
  1. required String level,
  2. required String title,
  3. String? ref,
  4. Iterable<SummaryArticle>? articles,
})

Implementation

const SummaryArticle({
  required this.level,
  required this.title,
  this.ref,
  this.articles,
});