fromUrl static method

Future<WebFeed> fromUrl(
  1. String url
)

Implementation

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