copyWith method
Implementation
LanguagePresetTranslation copyWith({String? sourceHash, String? text}) {
return LanguagePresetTranslation(
sourceHash: sourceHash ?? this.sourceHash, text: text ?? this.text);
}
LanguagePresetTranslation copyWith({String? sourceHash, String? text}) {
return LanguagePresetTranslation(
sourceHash: sourceHash ?? this.sourceHash, text: text ?? this.text);
}