InlineQueryResultGame.fromMap constructor
Implementation
InlineQueryResultGame.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
id = map['id'];
if (map['game'] != null) {
game = TdApiMap.fromMap(map['game']) as Game;
}
}