FullWindowDialog constructor

FullWindowDialog({
  1. Key? key,
  2. String? title,
  3. Widget? body,
  4. bool hidePageHeader = false,
  5. Function? onAccept,
  6. Function? onCancel,
})

Implementation

FullWindowDialog({
  this.key,
  this.title,
  this.body,
  this.hidePageHeader = false,
  this.onAccept,
  this.onCancel,
}) : super(key: key);