PdfTocEntry constructor

const PdfTocEntry({
  1. required String title,
  2. int? pageIndex,
  3. String? uri,
  4. PdfPoint? scrollPosition,
  5. List<PdfTocEntry> children = const [],
})

Creates an immutable PdfTocEntry.

Implementation

const PdfTocEntry({
  required this.title,
  this.pageIndex,
  this.uri,
  this.scrollPosition,
  this.children = const [],
});