CallServer.fromJson constructor
Parse from a json
Implementation
factory CallServer.fromJson(Map<String, dynamic> json) => CallServer(
id: int.parse(json['id']),
ipAddress: json['ip_address'],
ipv6Address: json['ipv6_address'],
port: json['port'],
type: CallServerType.fromJson(json['type']),
);