FeedbackStrings constructor

const FeedbackStrings({
  1. String pageTitle = 'Send Feedback',
  2. String feedbackInputLabel = 'Your feedback',
  3. String feedbackInputHint = 'Tell us what you think...',
  4. String feedbackInputValidationError = 'Please enter your feedback.',
  5. String submitButtonLabel = 'Submit',
  6. String sentSuccessfully = 'Thank you for your feedback!',
  7. 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.',
});