DialogThemeData constructor

const DialogThemeData({
  1. BoxConstraints? constraints,
  2. EdgeInsets? menuPadding,
  3. double? menuSpacing,
  4. EdgeInsets? titlePadding,
  5. EdgeInsets? bodyPadding,
  6. Color? background,
  7. Color? barrierColor,
  8. TextStyle? titleTextStyle,
  9. TextAlign? bodyTextAlign,
  10. ImageFilter? imageFilter,
})

Creates a DialogThemeData.

Implementation

const DialogThemeData({
  this.constraints,
  this.menuPadding,
  this.menuSpacing,
  this.titlePadding,
  this.bodyPadding,
  this.background,
  this.barrierColor,
  this.titleTextStyle,
  this.bodyTextAlign,
  this.imageFilter,
});