InlineKeyboardButtonTypeLoginUrl constructor

const InlineKeyboardButtonTypeLoginUrl({
  1. required String url,
  2. required int id,
  3. required String forwardText,
})

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

Implementation

const InlineKeyboardButtonTypeLoginUrl({
  required this.url,
  required this.id,
  required this.forwardText,
});