RssItem constructor
RssItem({
- String? title,
- String? description,
- String? link,
- List<
RssCategory> ? categories, - String? guid,
- DateTime? pubDate,
- String? author,
- String? comments,
- RssSource? source,
- RssContent? content,
- Media? media,
- RssEnclosure? enclosure,
- DublinCore? dc,
- Itunes? itunes,
- PodcastItem? podcast,
- CustomNamespace? customNamespace,
Constructor for the RssItem
class.
Initialize the RSS item properties such as title
, description
, link
, categories
, guid
, pubDate
,
author
, comments
, source
, content
, media
, enclosure
, dc
, itunes
, podcast
, and customNamespace
.
Implementation
RssItem({
this.title,
this.description,
this.link,
this.categories,
this.guid,
this.pubDate,
this.author,
this.comments,
this.source,
this.content,
this.media,
this.enclosure,
this.dc,
this.itunes,
this.podcast,
this.customNamespace,
});