WDialog constructor

const WDialog({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. String? className,
  5. EdgeInsetsGeometry? padding,
  6. Color? backgroundColor,
  7. BorderRadius? borderRadius,
  8. bool barrierDismissible = true,
  9. Color? barrierColor,
  10. List<Widget>? actions,
  11. double? width,
  12. double? height,
  13. AlignmentGeometry? alignment,
})

Implementation

const WDialog({
  super.key,
  required this.child,
  this.title,
  this.className,
  this.padding,
  this.backgroundColor,
  this.borderRadius,
  this.barrierDismissible = true,
  this.barrierColor,
  this.actions,
  this.width,
  this.height,
  this.alignment,
});