UDocOutlineNode constructor

const UDocOutlineNode({
  1. required String title,
  2. UDocDestination? destination,
  3. String? uri,
  4. List<UDocOutlineNode> children = const <UDocOutlineNode>[],
  5. bool expanded = false,
  6. Color? color,
  7. bool bold = false,
  8. bool italic = false,
})

Implementation

const UDocOutlineNode({required this.title, this.destination, this.uri, this.children = const <UDocOutlineNode>[], this.expanded = false, this.color, this.bold = false, this.italic = false});