SetupInfo constructor

SetupInfo({
  1. required int numberedLists,
  2. required List<QHyperLink> hyperlinks,
})

Constructs a SetupInfo instance with required properties.

numberedLists specifies the number of numbered lists in the setup.

hyperlinks is a list of QHyperLink objects representing hyperlinks.

Implementation

SetupInfo({
  required this.numberedLists,
  required this.hyperlinks,
});