updateNewInlineCallbackQuery property
A new incoming callback query from a message sent via a bot; for bots only
Implementation
UpdateNewInlineCallbackQuery? get updateNewInlineCallbackQuery {
if (this is UpdateNewInlineCallbackQuery) {
return this as UpdateNewInlineCallbackQuery;
}
return null;
}