RssFeed constructor
RssFeed({
- String? title,
- String? author,
- String? description,
- String? link,
- List<
RssItem> ? items, - RssImage? image,
- RssCloud? cloud,
- List<
RssCategory> ? categories, - List<
String> ? skipDays, - List<
int> ? skipHours, - String? lastBuildDate,
- String? language,
- String? generator,
- String? copyright,
- String? docs,
- String? managingEditor,
- String? rating,
- String? webMaster,
- int? ttl,
- DublinCore? dc,
- Itunes? itunes,
- Syndication? syndication,
- Podcast? podcast,
Constructor for the RssFeed
class.
Initialize the RSS feed properties such as title
, author
, description
, link
, items
, image
, cloud
,
categories
, skipDays
, skipHours
, lastBuildDate
, language
, generator
, copyright
, docs
,
managingEditor
, rating
, webMaster
, ttl
, dc
, itunes
, syndication
, and podcast
.
Implementation
RssFeed({
this.title,
this.author,
this.description,
this.link,
this.items,
this.image,
this.cloud,
this.categories,
this.skipDays,
this.skipHours,
this.lastBuildDate,
this.language,
this.generator,
this.copyright,
this.docs,
this.managingEditor,
this.rating,
this.webMaster,
this.ttl,
this.dc,
this.itunes,
this.syndication,
this.podcast,
});