copyWith method
Implementation
MessageTranslationInfo copyWith({bool? hidden}) {
return MessageTranslationInfo(
targetLanguage: targetLanguage,
sourceLanguage: sourceLanguage,
text: text,
translatedAt: translatedAt,
source: source,
hidden: hidden ?? this.hidden,
);
}