RssFeed constructor
const
RssFeed({
- String? title,
- String? author,
- String? description,
- String? link,
- List<
RssItem> items = const <RssItem>[], - RssImage? image,
- RssCloud? cloud,
- List<
RssCategory> categories = const <RssCategory>[], - List<
String> skipDays = const <String>[], - List<
int> skipHours = const <int>[], - String? lastBuildDate,
- String? language,
- String? generator,
- String? copyright,
- String? docs,
- String? managingEditor,
- String? rating,
- String? medium,
- String? webMaster,
- int ttl = 0,
- DublinCore? dc,
- RssItunes? itunes,
- RssPodcastIndex? podcastIndex,
Implementation
const RssFeed({
this.title,
this.author,
this.description,
this.link,
this.items = const <RssItem>[],
this.image,
this.cloud,
this.categories = const <RssCategory>[],
this.skipDays = const <String>[],
this.skipHours = const <int>[],
this.lastBuildDate,
this.language,
this.generator,
this.copyright,
this.docs,
this.managingEditor,
this.rating,
this.medium,
this.webMaster,
this.ttl = 0,
this.dc,
this.itunes,
this.podcastIndex,
});