KeynoteStatementSlide constructor

const KeynoteStatementSlide({
  1. required String statement,
  2. TextStyle? statementTextStyle,
  3. Alignment? statementAlignment,
  4. TextAlign? statementTextAlignment,
  5. Gradient? statementGradient,
  6. EdgeInsets? padding,
  7. Widget? statementTitleReplacementWidget,
  8. Key? key,
})

Constructs a KeynoteStatementSlide widget.

statement is the text of the statement.

statementTextStyle is the style for the statement text.

statementAlignment is the alignment for the statement text widget.

statementTextAlignment is the text alignment for the statement text.

statementGradient is the gradient to apply to the statement.

padding is the padding around the slide.

statementTitleReplacementWidget is the replacement widget for the statement.

Implementation

const KeynoteStatementSlide({
  required this.statement,
  this.statementTextStyle,
  this.statementAlignment,
  this.statementTextAlignment,
  this.statementGradient,
  this.padding,
  this.statementTitleReplacementWidget,
  super.key,
});