copyWith method
Implementation
SetMessageFactCheck copyWith({
int? chatId,
int? messageId,
FormattedText? text,
}) => SetMessageFactCheck(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
text: text ?? this.text,
);
SetMessageFactCheck copyWith({
int? chatId,
int? messageId,
FormattedText? text,
}) => SetMessageFactCheck(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
text: text ?? this.text,
);