fromMap static method
override
Construct from Map.
Implementation
static SearchWebApp? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
if (_ != CONSTRUCTOR) return null;
var extra = _map['@extra'];
var clientId = _map['@clientId'];
var bot_user_id = _map['bot_user_id']! as int;
var web_app_short_name = _map['web_app_short_name']! as String;
return SearchWebApp(
extra: extra,
clientId: clientId,
bot_user_id: bot_user_id,
web_app_short_name: web_app_short_name,
);
}