DialogDecoration constructor

DialogDecoration({
  1. EdgeInsets? padding,
  2. BoxBorder? thumbBorder,
  3. TextStyle? headerStyle,
  4. TextStyle? contentStyle,
  5. double? iconSize,
  6. ShapeBorder? shape,
  7. double? elevation,
  8. BorderRadius? thumbBorderRadius,
  9. TextAlign? textAlign,
  10. BorderRadius? buttonBorderRadius,
  11. double? buttonElevation,
  12. TextStyle? buttonTextStyle,
  13. Color? buttonForegroundTextColor,
  14. EdgeInsets? buttonPadding,
  15. double? secondaryButtonBorderWidth,
})

Implementation

DialogDecoration({
  this.padding,
  this.thumbBorder,
  this.headerStyle,
  this.contentStyle,
  this.iconSize,
  this.shape,
  this.elevation,
  this.thumbBorderRadius,
  this.textAlign,
  this.buttonBorderRadius,
  this.buttonElevation,
  this.buttonTextStyle,
  this.buttonForegroundTextColor,
  this.buttonPadding,
  this.secondaryButtonBorderWidth,
});