merge method

BlogsStrings merge(
  1. BlogsStrings? other
)

Implementation

BlogsStrings merge(BlogsStrings? other) {
  if (other == null) return this;
  return BlogsStrings(
    pageTitle: other.pageTitle,
    searchHint: other.searchHint,
    noBlogsAvailable: other.noBlogsAvailable,
    errorLoadingBlogs: other.errorLoadingBlogs,
    noSearchResults: other.noSearchResults ?? noSearchResults,
    readMore: other.readMore,
    pageOf: other.pageOf ?? pageOf,
    share: other.share,
    copyLink: other.copyLink,
    linkCopied: other.linkCopied,
    shareFailed: other.shareFailed,
    viewImage: other.viewImage,
    failedToLoadImage: other.failedToLoadImage,
    tryAgain: other.tryAgain,
  );
}