MessageVideoNote.fromMap constructor
Implementation
MessageVideoNote.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
if (map['video_note'] != null) {
video_note = TdApiMap.fromMap(map['video_note']) as VideoNote;
}
is_viewed = map['is_viewed'];
is_secret = map['is_secret'];
}