Outline constructor
Outline({})
Implementation
Outline({
super.child,
required super.name,
required this.title,
this.level = 0,
this.color,
this.style = PdfOutlineStyle.normal,
}) : assert(level >= 0),
super(setX: true);