InfoForm constructor

const InfoForm({
  1. Key? key,
  2. dynamic onImageSelected(
    1. File? image
    )?,
  3. required GlobalKey<FormState> formKey,
  4. bool editFunctionality = false,
  5. bool saveFunctionality = false,
  6. dynamic onModified()?,
})

Implementation

const InfoForm({
  super.key,
  this.onImageSelected,
  required this.formKey,
  this.editFunctionality = false,
  this.saveFunctionality = false,
  this.onModified,
});