MessageExtendedMediaVideo.fromMap constructor
Implementation
MessageExtendedMediaVideo.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
if (map['video'] != null) {
video = TdApiMap.fromMap(map['video']) as Video;
}
if (map['caption'] != null) {
caption = TdApiMap.fromMap(map['caption']) as FormattedText;
}
}