static Future<WebFeed> fromUrl(String url) async { final response = await http.get(Uri.parse(url)); return fromXmlString(response.body); }