ContentToc constructor

const ContentToc({
  1. required List<TocEntry> entries,
  2. String? title = 'On this page',
})

Implementation

const ContentToc({
  required this.entries,
  this.title = 'On this page',
});