SearchWebApp constructor

const SearchWebApp({
  1. required int botUserId,
  2. required String webAppShortName,
})

Returns information about a Web App by its short name. Returns a 404 error if the Web App is not found

Implementation

const SearchWebApp({
  required this.botUserId,
  required this.webAppShortName,
});