fromMap static method
override
Construct from Map.
Implementation
static InlineQueryResultsButtonType? fromMap(Map<String, dynamic>? _map) {
if (_map == null) return null;
var _ = _map["@type"];
switch (_) {
case 'inlineQueryResultsButtonTypeStartBot':
return InlineQueryResultsButtonTypeStartBot.fromMap(_map);
case 'inlineQueryResultsButtonTypeWebApp':
return InlineQueryResultsButtonTypeWebApp.fromMap(_map);
case null:
default:
return null;
}
}