copyWithWrapped method
Implementation
WidgetLanguagePresetResponse copyWithWrapped(
{Wrapped<dynamic>? firstMessage, Wrapped<dynamic>? textContents}) {
return WidgetLanguagePresetResponse(
firstMessage:
(firstMessage != null ? firstMessage.value : this.firstMessage),
textContents:
(textContents != null ? textContents.value : this.textContents));
}