copyWith method

MessageTranslationInfo copyWith({
  1. bool? hidden,
})

Implementation

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