DialogProps constructor

const DialogProps({
  1. String? title,
  2. required List<Widget> content,
  3. List<Widget>? actions,
  4. bool showCloseButton = true,
  5. void onClose()?,
  6. double maxWidth = 500,
  7. bool barrierDismissible = true,
})

Implementation

const DialogProps({
  this.title,
  required this.content,
  this.actions,
  this.showCloseButton = true,
  this.onClose,
  this.maxWidth = 500,
  this.barrierDismissible = true,
});