copyWith method

TimelineTranslations copyWith({
  1. String? noPosts,
  2. String? noPostsWithFilter,
  3. String? anonymousUser,
  4. String? title,
  5. String? content,
  6. String? contentDescription,
  7. String? uploadImage,
  8. String? uploadImageDescription,
  9. String? allowComments,
  10. String? allowCommentsDescription,
  11. String? commentsTitleOnPost,
  12. String? checkPost,
  13. String? postAt,
  14. String? deletePost,
  15. String? deleteReaction,
  16. String? viewPost,
  17. String? likesTitle,
  18. String? commentsTitle,
  19. String? writeComment,
  20. String? firstComment,
  21. String? postLoadingError,
  22. String? timelineSelectionDescription,
  23. String? searchHint,
  24. String? postOverview,
  25. String? postIn,
  26. String? postCreation,
  27. String? titleHintText,
  28. String? contentHintText,
  29. String? yes,
  30. String? no,
  31. String? timeLineScreenTitle,
})

Implementation

TimelineTranslations copyWith({
  String? noPosts,
  String? noPostsWithFilter,
  String? anonymousUser,
  String? title,
  String? content,
  String? contentDescription,
  String? uploadImage,
  String? uploadImageDescription,
  String? allowComments,
  String? allowCommentsDescription,
  String? commentsTitleOnPost,
  String? checkPost,
  String? postAt,
  String? deletePost,
  String? deleteReaction,
  String? viewPost,
  String? likesTitle,
  String? commentsTitle,
  String? writeComment,
  String? firstComment,
  String? postLoadingError,
  String? timelineSelectionDescription,
  String? searchHint,
  String? postOverview,
  String? postIn,
  String? postCreation,
  String? titleHintText,
  String? contentHintText,
  String? yes,
  String? no,
  String? timeLineScreenTitle,
}) =>
    TimelineTranslations(
      noPosts: noPosts ?? this.noPosts,
      noPostsWithFilter: noPostsWithFilter ?? this.noPostsWithFilter,
      anonymousUser: anonymousUser ?? this.anonymousUser,
      title: title ?? this.title,
      content: content ?? this.content,
      contentDescription: contentDescription ?? this.contentDescription,
      uploadImage: uploadImage ?? this.uploadImage,
      uploadImageDescription:
          uploadImageDescription ?? this.uploadImageDescription,
      allowComments: allowComments ?? this.allowComments,
      allowCommentsDescription:
          allowCommentsDescription ?? this.allowCommentsDescription,
      commentsTitleOnPost: commentsTitleOnPost ?? this.commentsTitleOnPost,
      checkPost: checkPost ?? this.checkPost,
      postAt: postAt ?? this.postAt,
      deletePost: deletePost ?? this.deletePost,
      deleteReaction: deleteReaction ?? this.deleteReaction,
      viewPost: viewPost ?? this.viewPost,
      likesTitle: likesTitle ?? this.likesTitle,
      commentsTitle: commentsTitle ?? this.commentsTitle,
      writeComment: writeComment ?? this.writeComment,
      firstComment: firstComment ?? this.firstComment,
      postLoadingError: postLoadingError ?? this.postLoadingError,
      timelineSelectionDescription:
          timelineSelectionDescription ?? this.timelineSelectionDescription,
      searchHint: searchHint ?? this.searchHint,
      postOverview: postOverview ?? this.postOverview,
      postIn: postIn ?? this.postIn,
      postCreation: postCreation ?? this.postCreation,
      titleHintText: titleHintText ?? this.titleHintText,
      contentHintText: contentHintText ?? this.contentHintText,
      yes: yes ?? this.yes,
      no: no ?? this.no,
      timeLineScreenTitle: timeLineScreenTitle ?? this.timeLineScreenTitle,
    );