TocEntry constructor

TocEntry({
  1. required String text,
  2. required String anchor,
  3. required int level,
  4. List<TocEntry>? children,
})

Implementation

TocEntry({
  required this.text,
  required this.anchor,
  required this.level,
  List<TocEntry>? children,
}) : children = children ?? [];