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