DialogBackground constructor

const DialogBackground({
  1. Key? key,
  2. Widget? dialog,
  3. bool? dismissable,
  4. double? blur,
  5. void onDismiss()?,
  6. Color? barrierColor,
})

Implementation

const DialogBackground({
  super.key,
  this.dialog,
  this.dismissable,
  this.blur,
  this.onDismiss,
  this.barrierColor,
});