copyWith method
Implementation
UpdateMessageFactCheck copyWith({
int? chatId,
int? messageId,
FactCheck? factCheck,
}) => UpdateMessageFactCheck(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
factCheck: factCheck ?? this.factCheck,
);