JDialogForm constructor

const JDialogForm({
  1. Key? key,
  2. String title = '',
  3. void onPressed()?,
  4. required Widget form,
  5. Widget? header,
})

Implementation

const JDialogForm({
  super.key,
  this.title = '',
  this.onPressed,
  required this.form,
  this.header,
});