copyWithWrapped method
Implementation
LanguagePresetTranslation copyWithWrapped(
{Wrapped<String>? sourceHash, Wrapped<String>? text}) {
return LanguagePresetTranslation(
sourceHash: (sourceHash != null ? sourceHash.value : this.sourceHash),
text: (text != null ? text.value : this.text));
}