KeynoteSectionSlide constructor

const KeynoteSectionSlide({
  1. required String sectionText,
  2. TextStyle? sectionTextStyle,
  3. Alignment? sectionAlignment,
  4. TextAlign? sectionTextAlignment,
  5. Gradient? sectionGradient,
  6. EdgeInsets? padding,
  7. Widget? sectionTitleReplacementWidget,
  8. Key? key,
})

Constructs a KeynoteSectionSlide widget.

sectionText is the text of the section title.

sectionTextStyle is the style for the section title text.

sectionAlignment is the alignment for the section title text widget.

sectionTextAlignment is the text alignment for the section title text.

sectionGradient is the gradient to apply to the section title.

padding is the padding around the slide.

sectionTitleReplacementWidget is the replacement widget for the section title.

Implementation

const KeynoteSectionSlide({
  required this.sectionText,
  this.sectionTextStyle,
  this.sectionAlignment,
  this.sectionTextAlignment,
  this.sectionGradient,
  this.padding,
  this.sectionTitleReplacementWidget,
  super.key,
});