copyWith method
UpdateMessageInteractionInfo
copyWith({
- int? chatId,
- int? messageId,
- MessageInteractionInfo? interactionInfo,
Implementation
UpdateMessageInteractionInfo copyWith({
int? chatId,
int? messageId,
MessageInteractionInfo? interactionInfo,
}) => UpdateMessageInteractionInfo(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
interactionInfo: interactionInfo ?? this.interactionInfo,
);