CallServer.fromMap constructor
Implementation
CallServer.fromMap(Map<String, dynamic> map) {
extra = map['@extra'];
client_id = map['@client_id'];
id = map['id'];
ip_address = map['ip_address'];
ipv6_address = map['ipv6_address'];
port = map['port'];
if (map['type'] != null) {
type = TdApiMap.fromMap(map['type']) as CallServerType;
}
}