FeedbackFormConfig constructor

const FeedbackFormConfig({
  1. String title = 'Feedback Form',
  2. required List<FormFieldConfig> fields,
  3. String attachButtonLabel = 'Attach Screenshots / Photos',
  4. String submitButtonLabel = 'Submit',
  5. TextStyle? titleTextStyle,
  6. ButtonStyle? submitButtonStyle,
  7. ButtonStyle? attachButtonStyle,
  8. void onBeforeSubmit()?,
  9. void onAfterSubmit()?,
})

Implementation

const FeedbackFormConfig({
  this.title = 'Feedback Form',
  required this.fields,
  this.attachButtonLabel = 'Attach Screenshots / Photos',
  this.submitButtonLabel = 'Submit',
  this.titleTextStyle,
  this.submitButtonStyle,
  this.attachButtonStyle,
  this.onBeforeSubmit,
  this.onAfterSubmit,
});