KeynoteBulletsSlide constructor

const KeynoteBulletsSlide({
  1. required List<String> bulletPoints,
  2. ListBullets? bullets,
  3. TextStyle? bulletTextStyle,
  4. Alignment? bulletPointsAlignment,
  5. TextAlign? bulletTextAlignment,
  6. EdgeInsets? bulletPointsPadding,
  7. EdgeInsets? padding,
  8. int? footerFlexUnits,
  9. Widget? bulletPointsWidgetReplacement,
  10. int? animationIndex,
  11. AnimationArguments? animationArguments,
  12. Key? key,
})

Constructs a KeynoteBulletsSlide.

bulletPoints is the list of texts to display on the slide.

bullets is the enum value representing the bullet style, that should be displayed before each text.

bulletTextStyle is the text style for the bullet points.

bulletPointsAlignment is the alignment for the bullet points.

bulletTextAlignment is the text alignment for the bullet points.

bulletPointsPadding is the padding for the bullet points.

padding is the padding for the slide.

footerFlexUnits is the flex units for the footer section.

bulletPointsWidgetReplacement is the widget replacement for the bullet points section.

animationIndex is the index at which the animation should start.

animationArguments is the animation arguments for the slide animation.

Implementation

const KeynoteBulletsSlide({
  required this.bulletPoints,
  this.bullets,
  this.bulletTextStyle,
  this.bulletPointsAlignment,
  this.bulletTextAlignment,
  this.bulletPointsPadding,
  this.padding,
  this.footerFlexUnits,
  this.bulletPointsWidgetReplacement,
  this.animationIndex,
  this.animationArguments,
  super.key,
});