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