MarkdownSection constructor

const MarkdownSection({
  1. required String heading,
  2. required int level,
  3. required String content,
  4. List<MarkdownSection> children = const [],
})

Implementation

const MarkdownSection({
  required this.heading,
  required this.level,
  required this.content,
  this.children = const [],
});