Animations.fromMap constructor
Implementation
Animations.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
if (map['animations'] != null) {
animations = [];
for (var someValue in map['animations']) {
if (someValue != null) {
animations?.add(TdApiMap.fromMap(someValue) as Animation);
}
}
}
}