inlineKeyboardButtonTypeLoginUrl property

InlineKeyboardButtonTypeLoginUrl? inlineKeyboardButtonTypeLoginUrl

A button that opens a specified URL and automatically authorize the current user by calling getLoginUrlInfo

Implementation

InlineKeyboardButtonTypeLoginUrl? get inlineKeyboardButtonTypeLoginUrl {
  if (this is InlineKeyboardButtonTypeLoginUrl) {
    return this as InlineKeyboardButtonTypeLoginUrl;
  }
  return null;
}