PageBuilderPresentation constructor

const PageBuilderPresentation({
  1. required List<PresentationSlide> presentationPages,
  2. required PageController pageController,
  3. Key? key,
})

Constructs a PageBuilderPresentation widget.

presentationPages is the list of pages in the presentation. Each page is represented by a PresentationSlide, which encapsulates the widget that represents the page and any additional properties related to the presentation slide.

pageController is the controller used to navigate between the pages. It determines which page is currently being displayed and can be used to change the current page programmatically.

Implementation

const PageBuilderPresentation({
  required this.presentationPages,
  required this.pageController,
  super.key,
});