copyWith method
Implementation
GetCallbackQueryMessage copyWith({
int? chatId,
int? messageId,
int? callbackQueryId,
}) => GetCallbackQueryMessage(
chatId: chatId ?? this.chatId,
messageId: messageId ?? this.messageId,
callbackQueryId: callbackQueryId ?? this.callbackQueryId,
);