copyWith method
- 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,
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,
);
}