BlogsStrings constructor

const BlogsStrings({
  1. String pageTitle = 'Blog',
  2. String searchHint = 'Search blogs...',
  3. String noBlogsAvailable = 'No blogs available',
  4. String errorLoadingBlogs = 'Error loading blogs',
  5. String? noSearchResults,
  6. String readMore = 'Read More →',
  7. String? pageOf,
  8. String share = 'Share',
  9. String copyLink = 'Copy Link',
  10. String linkCopied = 'Link copied to clipboard!',
  11. String shareFailed = 'Unable to open share dialog',
  12. String viewImage = 'View Image',
  13. String failedToLoadImage = 'Failed to load image',
  14. String tryAgain = 'Try Again',
})

Implementation

const BlogsStrings({
  this.pageTitle = 'Blog',
  this.searchHint = 'Search blogs...',
  this.noBlogsAvailable = 'No blogs available',
  this.errorLoadingBlogs = 'Error loading blogs',
  this.noSearchResults,
  this.readMore = 'Read More →',
  this.pageOf,
  this.share = 'Share',
  this.copyLink = 'Copy Link',
  this.linkCopied = 'Link copied to clipboard!',
  this.shareFailed = 'Unable to open share dialog',
  this.viewImage = 'View Image',
  this.failedToLoadImage = 'Failed to load image',
  this.tryAgain = 'Try Again',
});