GetLoginUrlInfo constructor

const GetLoginUrlInfo({
  1. required int chatId,
  2. required int messageId,
  3. required int buttonId,
})

Returns information about a button of type inlineKeyboardButtonTypeLoginUrl. The method needs to be called when the user presses the button

Implementation

const GetLoginUrlInfo({
  required this.chatId,
  required this.messageId,
  required this.buttonId,
});