InlineKeyboardButtonTypeUrl constructor

const InlineKeyboardButtonTypeUrl({
  1. required String url,
})

InlineKeyboardButtonTypeUrl (inlineKeyboardButtonTypeUrl) - child of InlineKeyboardButtonType

A button that opens a specified URL.

  • url: HTTP or tg:// URL to open. If the link is of the type internalLinkTypeWebApp, then the button must be marked as a Web App button.

Implementation

const InlineKeyboardButtonTypeUrl({
  required this.url,
});