ArcaneToc constructor

const ArcaneToc({
  1. List<TocEntry> entries = const [],
  2. String title = 'On this page',
  3. bool showTreeLines = true,
  4. String classPrefix = 'toc',
  5. Widget? customContent,
  6. Key? key,
})

Implementation

const ArcaneToc({
  this.entries = const [],
  this.title = 'On this page',
  this.showTreeLines = true,
  this.classPrefix = 'toc',
  this.customContent,
  super.key,
});