Creates a Server instance from a JSON map
factory Server.fromJson(Map<String, dynamic> json) { return Server( url: json['url'] as String, description: json['description'] as String?, ); }