DialogView constructor

const DialogView({
  1. Key? key,
  2. required Widget child,
  3. String? title,
  4. bool? closeButton,
  5. List<Widget>? leftBar,
  6. List<Widget>? rightBar,
  7. dynamic onClose()?,
  8. bool fullScreen = false,
  9. TextDirection direction = TextDirection.ltr,
  10. double? width,
  11. double? height,
  12. double? radius,
  13. Color? backgroundColor,
  14. Color? borderColor,
})

Implementation

const DialogView({
  Key? key,
  required this.child,
  this.title,
  this.closeButton,
  this.leftBar,
  this.rightBar,
  this.onClose,
  this.fullScreen = false,
  this.direction = TextDirection.ltr,
  this.width,
  this.height,
  this.radius,
  this.backgroundColor,
  this.borderColor,
}) : super(key: key);