AnimatedDialogTheme constructor

const AnimatedDialogTheme({
  1. EdgeInsets? contentPadding,
  2. EdgeInsets? actionsPadding,
  3. Size? contentSize,
  4. TextStyle? contentTextStyle,
  5. TextAlign? contentTextAlign,
  6. TextStyle? actionTextStyle,
  7. VoidCallback? onPressed,
  8. BoxConstraints? contentBoxConstraints,
  9. ShapeBorder? shape,
  10. double? elevation,
  11. Color? backgroundColor,
  12. Duration? animationDuration,
  13. LanguageDialogTheme? languageDialogTheme,
  14. TextStyle? titleStyle,
})

Default constructor for the AnimatedDialogTheme.

Implementation

const AnimatedDialogTheme({
  this.contentPadding,
  this.actionsPadding,
  this.contentSize,
  this.contentTextStyle,
  this.contentTextAlign,
  this.actionTextStyle,
  this.onPressed,
  this.contentBoxConstraints,
  this.shape,
  this.elevation,
  this.backgroundColor,
  this.animationDuration,
  this.languageDialogTheme,
  this.titleStyle,
});