EasyPresentationApp constructor

const EasyPresentationApp({
  1. Key? key,
  2. required List<PresentationData> presentationData,
  3. String? title,
  4. String? leadingTitle,
  5. String? bgImage,
  6. MarkdownStyleSheet? markdownStyleSheet,
  7. bool topSafeArea = true,
  8. EventActionCallback? onTapEvent,
  9. PlacementBuilder? placementBuilder,
})

Implementation

const EasyPresentationApp({
  super.key,
  required this.presentationData,
  this.title,
  this.leadingTitle,
  this.bgImage,
  this.markdownStyleSheet,
  this.topSafeArea = true,
  this.onTapEvent,
  this.placementBuilder,
});