AlertTheme constructor

const AlertTheme({
  1. Color? backgroundColor,
  2. TextStyle? titleStyle,
  3. TextStyle? descriptionStyle,
  4. ButtonStyle? buttonStyle,
  5. BorderRadius? borderRadius,
  6. List<BoxShadow>? shadow,
  7. Duration? animationDuration,
})

Implementation

const AlertTheme({
  this.backgroundColor,
  this.titleStyle,
  this.descriptionStyle,
  this.buttonStyle,
  this.borderRadius,
  this.shadow,
  this.animationDuration,
});