KeynoteSectionSlide constructor

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

Constructs a KeynoteSectionSlide widget.

sectionText is the text of the section title.

sectionTextStyle is the optional style for the section title text.

sectionAlignment is the optional alignment for the section title text.

sectionGradient is the optional gradient to apply to the section title.

padding is the optional padding around the slide.

sectionTitleReplacementWidget is the optional replacement widget for the section title.

Implementation

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