get static method
Implementation
static Future<RelayInfo?> get(String url) async {
Uri uri = Uri.parse(url).replace(scheme: 'https');
try {
final response = await http.get(
uri,
headers: {'Accept': 'application/nostr+json'},
);
final decodedResponse =
jsonDecode(utf8.decode(response.bodyBytes)) as Map;
return RelayInfo.fromJson(decodedResponse, uri.toString());
} catch (e) {
Logger.log.d(e);
return null;
}
}