copyWith method

UpdateMessageFactCheck copyWith({
  1. int? chatId,
  2. int? messageId,
  3. FactCheck? factCheck,
})

Implementation

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