getFeed method

void getFeed(
  1. String rssUrl, {
  2. bool withLoading = true,
})

Perfoms the fetch of a RSS feed.

Implementation

void getFeed(String rssUrl, {bool withLoading = true}) =>
    add(RssEvent(rssUrl, withLoading: withLoading));