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.',
- String nameLabel = 'Name (Optional)',
- String nameHint = 'Enter your name',
- String emailLabel = 'Email (Optional)',
- String emailHint = 'Enter your email',
- String attachmentLabel = 'Attach a file (Optional)',
- String attachFileLabel = 'Attach File',
- String removeAttachment = 'Remove Attachment',
- String emailValidationError = 'Please enter a valid email.',
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.',
this.nameLabel = 'Name (Optional)',
this.nameHint = 'Enter your name',
this.emailLabel = 'Email (Optional)',
this.emailHint = 'Enter your email',
this.attachmentLabel = 'Attach a file (Optional)',
this.attachFileLabel = 'Attach File',
this.removeAttachment = 'Remove Attachment',
this.emailValidationError = 'Please enter a valid email.',
});