FeedbackFormConfig constructor
const
FeedbackFormConfig({
- String title = 'Feedback Form',
- required List<
FormFieldConfig> fields, - String attachButtonLabel = 'Attach Screenshots / Photos',
- String submitButtonLabel = 'Submit',
- TextStyle? titleTextStyle,
- ButtonStyle? submitButtonStyle,
- ButtonStyle? attachButtonStyle,
- void onBeforeSubmit()?,
- 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,
});