GNForm constructor

const GNForm({
  1. Key? key,
  2. required Key formKey,
  3. required Widget child,
  4. String? dialogTitle,
  5. String? dialogMessage,
  6. bool? isAlertFormExit = true,
})

Implementation

const GNForm({
  super.key,
  required this.formKey,
  required this.child,
  this.dialogTitle,
  this.dialogMessage,
  this.isAlertFormExit = true,
});