DialogStyle constructor

DialogStyle(
  1. {Color? screenBackgroundColor,
  2. Color? dialogBackgroundColor,
  3. BlurEffect? dialogBackgroundEffect,
  4. double? cornerRadius,
  5. Color? titleColor,
  6. Font? titleFont,
  7. Color? messageColor,
  8. Font? messageFont,
  9. Color? separatorColor,
  10. double? separatorWidth}
)

Implementation

DialogStyle({
  this.screenBackgroundColor,
  this.dialogBackgroundColor,
  this.dialogBackgroundEffect,
  this.cornerRadius,
  this.titleColor,
  this.titleFont,
  this.messageColor,
  this.messageFont,
  this.separatorColor,
  this.separatorWidth,
});