KeynoteStatementSlide constructor

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

Constructs a KeynoteStatementSlide widget.

statement is the text of the statement.

statementTextStyle is the optional style for the statement text.

statementAlignment is the optional alignment for the statement text.

statementGradient is the optional gradient to apply to the statement.

padding is the optional padding around the slide.

statementTitleReplacementWidget is the optional replacement widget for the statement.

Implementation

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