DialogThemeData constructor

const DialogThemeData({
  1. Color? background,
  2. Color? foreground,
  3. Color? overlayColor,
  4. double? overlayOpacity,
  5. Color? buttonBackground,
  6. Color? buttonSelectedBackground,
  7. Color? buttonForeground,
  8. Color? buttonSelectedForeground,
  9. Color? hintForeground,
  10. Color? footerBackground,
  11. int? width,
  12. int? maxHeight,
})

Implementation

const DialogThemeData({
  this.background,
  this.foreground,
  this.overlayColor,
  this.overlayOpacity,
  this.buttonBackground,
  this.buttonSelectedBackground,
  this.buttonForeground,
  this.buttonSelectedForeground,
  this.hintForeground,
  this.footerBackground,
  this.width,
  this.maxHeight,
});