DialogForm constructor

const DialogForm({
  1. Key? key,
  2. Key? formKey,
  3. bool wrapWithDisplayAreaSizeProvider = true,
  4. double formViewHeight = 0.0,
  5. double formInputHeight = 0.0,
  6. required String title,
  7. required Widget body,
  8. required Widget actions,
  9. VoidCallback? onCloseDialog,
})

Implementation

const DialogForm({
  super.key,
  this.formKey,
  this.wrapWithDisplayAreaSizeProvider = true,
  this.formViewHeight = 0.0,
  this.formInputHeight = 0.0,
  required this.title,
  required this.body,
  required this.actions,
  this.onCloseDialog,
});