MarkdownSection constructor
const
MarkdownSection({
- required String heading,
- required int level,
- required String content,
- List<
MarkdownSection> children = const [],
Implementation
const MarkdownSection({
required this.heading,
required this.level,
required this.content,
this.children = const [],
});