copyWith method

SetMessageFactCheck copyWith({
  1. int? chatId,
  2. int? messageId,
  3. FormattedText? text,
})

Implementation

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