CPDFOutline constructor

CPDFOutline({
  1. required String uuid,
  2. String? tag = '',
  3. required String title,
  4. required int level,
  5. CPDFDestination? destination,
  6. List<CPDFOutline> childList = const [],
  7. CPDFAction? action,
})

Implementation

CPDFOutline(
    {required this.uuid,
    this.tag = '',
    required this.title,
    required this.level,
    this.destination,
    this.childList = const [],
    this.action});