GetWebAppUrl constructor

const GetWebAppUrl({
  1. required int botUserId,
  2. required String url,
  3. ThemeParameters? theme,
  4. required String applicationName,
})

Returns an HTTPS URL of a Web App to open after keyboardButtonTypeWebApp or inlineQueryResultsButtonTypeWebApp button is pressed

Implementation

const GetWebAppUrl({
  required this.botUserId,
  required this.url,
  this.theme,
  required this.applicationName,
});