copyWith method

CupThreadStrings copyWith({
  1. String? retry,
  2. String? cancel,
  3. String? close,
  4. String? anonymous,
  5. String? justNow,
  6. String? minutesAgoSuffix,
  7. String? hoursAgoSuffix,
  8. String? daysAgoSuffix,
  9. String? featureRequests,
  10. String? proposeFeature,
  11. String? proposeAnIdea,
  12. String? searchFeatureRequests,
  13. String? all,
  14. String? underReview,
  15. String? planned,
  16. String? inProgress,
  17. String? completed,
  18. String? noFeatureRequestsFound,
  19. String? beTheFirstToSuggest,
  20. String? failedToLoadRequests,
  21. String? roadmap,
  22. String? noItemsInColumn,
  23. String? newFeatureRequest,
  24. String? titleLabel,
  25. String? titleHint,
  26. String? detailsLabel,
  27. String? detailsHint,
  28. String? yourNameOptional,
  29. String? yourNameHint,
  30. String? submitRequest,
  31. String? submitting,
  32. String? featureRequestSubmitted,
  33. String? titleValidationMin3,
  34. String? detailsValidationMin5,
  35. String? comments,
  36. String? writeAComment,
  37. String? send,
  38. String? posting,
  39. String? noCommentsYet,
  40. String? vote,
  41. String? voted,
  42. String? sendFeedback,
  43. String? submitFeedback,
  44. String? feedbackSummaryHint,
  45. String? feedbackDetailsHint,
  46. String? emailForRepliesOptional,
  47. String? emailHint,
  48. String? feedbackSent,
  49. String? attachments,
  50. String? addAttachment,
  51. String? remove,
  52. String? attachmentDefaultName,
  53. String? whatsNew,
  54. String? subscribeToUpdates,
  55. String? enterYourEmail,
  56. String? subscribe,
  57. String? subscribed,
  58. String? gotIt,
  59. String? version,
  60. String? userProfile,
  61. String? payingCustomer,
  62. String? freeTier,
})

Copies existing strings while overriding specified values.

Implementation

CupThreadStrings copyWith({
  String? retry,
  String? cancel,
  String? close,
  String? anonymous,
  String? justNow,
  String? minutesAgoSuffix,
  String? hoursAgoSuffix,
  String? daysAgoSuffix,
  String? featureRequests,
  String? proposeFeature,
  String? proposeAnIdea,
  String? searchFeatureRequests,
  String? all,
  String? underReview,
  String? planned,
  String? inProgress,
  String? completed,
  String? noFeatureRequestsFound,
  String? beTheFirstToSuggest,
  String? failedToLoadRequests,
  String? roadmap,
  String? noItemsInColumn,
  String? newFeatureRequest,
  String? titleLabel,
  String? titleHint,
  String? detailsLabel,
  String? detailsHint,
  String? yourNameOptional,
  String? yourNameHint,
  String? submitRequest,
  String? submitting,
  String? featureRequestSubmitted,
  String? titleValidationMin3,
  String? detailsValidationMin5,
  String? comments,
  String? writeAComment,
  String? send,
  String? posting,
  String? noCommentsYet,
  String? vote,
  String? voted,
  String? sendFeedback,
  String? submitFeedback,
  String? feedbackSummaryHint,
  String? feedbackDetailsHint,
  String? emailForRepliesOptional,
  String? emailHint,
  String? feedbackSent,
  String? attachments,
  String? addAttachment,
  String? remove,
  String? attachmentDefaultName,
  String? whatsNew,
  String? subscribeToUpdates,
  String? enterYourEmail,
  String? subscribe,
  String? subscribed,
  String? gotIt,
  String? version,
  String? userProfile,
  String? payingCustomer,
  String? freeTier,
}) {
  return CupThreadStrings(
    retry: retry ?? this.retry,
    cancel: cancel ?? this.cancel,
    close: close ?? this.close,
    anonymous: anonymous ?? this.anonymous,
    justNow: justNow ?? this.justNow,
    minutesAgoSuffix: minutesAgoSuffix ?? this.minutesAgoSuffix,
    hoursAgoSuffix: hoursAgoSuffix ?? this.hoursAgoSuffix,
    daysAgoSuffix: daysAgoSuffix ?? this.daysAgoSuffix,
    featureRequests: featureRequests ?? this.featureRequests,
    proposeFeature: proposeFeature ?? this.proposeFeature,
    proposeAnIdea: proposeAnIdea ?? this.proposeAnIdea,
    searchFeatureRequests: searchFeatureRequests ?? this.searchFeatureRequests,
    all: all ?? this.all,
    underReview: underReview ?? this.underReview,
    planned: planned ?? this.planned,
    inProgress: inProgress ?? this.inProgress,
    completed: completed ?? this.completed,
    noFeatureRequestsFound: noFeatureRequestsFound ?? this.noFeatureRequestsFound,
    beTheFirstToSuggest: beTheFirstToSuggest ?? this.beTheFirstToSuggest,
    failedToLoadRequests: failedToLoadRequests ?? this.failedToLoadRequests,
    roadmap: roadmap ?? this.roadmap,
    noItemsInColumn: noItemsInColumn ?? this.noItemsInColumn,
    newFeatureRequest: newFeatureRequest ?? this.newFeatureRequest,
    titleLabel: titleLabel ?? this.titleLabel,
    titleHint: titleHint ?? this.titleHint,
    detailsLabel: detailsLabel ?? this.detailsLabel,
    detailsHint: detailsHint ?? this.detailsHint,
    yourNameOptional: yourNameOptional ?? this.yourNameOptional,
    yourNameHint: yourNameHint ?? this.yourNameHint,
    submitRequest: submitRequest ?? this.submitRequest,
    submitting: submitting ?? this.submitting,
    featureRequestSubmitted: featureRequestSubmitted ?? this.featureRequestSubmitted,
    titleValidationMin3: titleValidationMin3 ?? this.titleValidationMin3,
    detailsValidationMin5: detailsValidationMin5 ?? this.detailsValidationMin5,
    comments: comments ?? this.comments,
    writeAComment: writeAComment ?? this.writeAComment,
    send: send ?? this.send,
    posting: posting ?? this.posting,
    noCommentsYet: noCommentsYet ?? this.noCommentsYet,
    vote: vote ?? this.vote,
    voted: voted ?? this.voted,
    sendFeedback: sendFeedback ?? this.sendFeedback,
    submitFeedback: submitFeedback ?? this.submitFeedback,
    feedbackSummaryHint: feedbackSummaryHint ?? this.feedbackSummaryHint,
    feedbackDetailsHint: feedbackDetailsHint ?? this.feedbackDetailsHint,
    emailForRepliesOptional: emailForRepliesOptional ?? this.emailForRepliesOptional,
    emailHint: emailHint ?? this.emailHint,
    feedbackSent: feedbackSent ?? this.feedbackSent,
    attachments: attachments ?? this.attachments,
    addAttachment: addAttachment ?? this.addAttachment,
    remove: remove ?? this.remove,
    attachmentDefaultName: attachmentDefaultName ?? this.attachmentDefaultName,
    whatsNew: whatsNew ?? this.whatsNew,
    subscribeToUpdates: subscribeToUpdates ?? this.subscribeToUpdates,
    enterYourEmail: enterYourEmail ?? this.enterYourEmail,
    subscribe: subscribe ?? this.subscribe,
    subscribed: subscribed ?? this.subscribed,
    gotIt: gotIt ?? this.gotIt,
    version: version ?? this.version,
    userProfile: userProfile ?? this.userProfile,
    payingCustomer: payingCustomer ?? this.payingCustomer,
    freeTier: freeTier ?? this.freeTier,
  );
}