FeedbackStrings constructor
const
FeedbackStrings({
- String pageTitle = 'Send Feedback',
- String feedbackInputLabel = 'Your feedback',
- String feedbackInputHint = 'Tell us what you think...',
- String feedbackInputValidationError = 'Please enter your feedback.',
- String submitButtonLabel = 'Submit',
- String sentSuccessfully = 'Thank you for your feedback!',
- String sendError = 'Something went wrong. Please try again later.',
Implementation
const FeedbackStrings({
this.pageTitle = 'Send Feedback',
this.feedbackInputLabel = 'Your feedback',
this.feedbackInputHint = 'Tell us what you think...',
this.feedbackInputValidationError = 'Please enter your feedback.',
this.submitButtonLabel = 'Submit',
this.sentSuccessfully = 'Thank you for your feedback!',
this.sendError = 'Something went wrong. Please try again later.',
});