We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hi please add this code i just add image to this one manually if you add it in future its very helpful for me i can't contribute to fix it myself
import 'package:dart_rss/domain/dublin_core/dublin_core.dart'; import 'package:dart_rss/domain/media/media.dart'; import 'package:dart_rss/domain/rss_category.dart'; import 'package:dart_rss/domain/rss_content.dart'; import 'package:dart_rss/domain/rss_enclosure.dart'; import 'package:dart_rss/domain/rss_item_podcast_index.dart'; import 'package:dart_rss/domain/rss_source.dart'; import 'package:dart_rss/util/helpers.dart'; import 'package:xml/xml.dart'; import 'package:dart_rss/domain/rss_item_itunes.dart'; class RssItem { factory RssItem.parse(XmlElement element) { return RssItem( title: findElementOrNull(element, 'title')?.innerText, description: findElementOrNull(element, 'description')?.innerText, link: findElementOrNull(element, 'link')?.innerText, categories: element .findElements('category') .map((element) => RssCategory.parse(element)) .toList(), guid: findElementOrNull(element, 'guid')?.innerText, pubDate: findElementOrNull(element, 'pubDate')?.innerText, author: findElementOrNull(element, 'author')?.innerText, comments: findElementOrNull(element, 'comments')?.innerText, image: findElementOrNull(element, 'image')?.innerText, source: RssSource.parse(findElementOrNull(element, 'source')), content: RssContent.parse(findElementOrNull(element, 'content:encoded')), media: Media.parse(element), enclosure: RssEnclosure.parse(findElementOrNull(element, 'enclosure')), dc: DublinCore.parse(element), itunes: RssItemItunes.parse(element), podcastIndex: RssItemPodcastIndex.parse(element), ); } const RssItem({ this.title, this.description, this.link, this.categories = const <RssCategory>[], this.guid, this.pubDate, this.author, this.comments, this.image, this.source, this.content, this.media, this.enclosure, this.dc, this.itunes, this.podcastIndex, }); final String? title; final String? description; final String? link; final List<RssCategory> categories; final String? guid; final String? pubDate; final String? author; final String? comments; final String? image; final RssSource? source; final RssContent? content; final Media? media; final RssEnclosure? enclosure; final DublinCore? dc; final RssItemItunes? itunes; final RssItemPodcastIndex? podcastIndex; RssItem copyWith({ String? title, String? description, String? link, List<RssCategory>? categories, String? guid, String? pubDate, String? author, String? comments, String? image, RssSource? source, RssContent? content, Media? media, RssEnclosure? enclosure, DublinCore? dc, RssItemItunes? itunes, RssItemPodcastIndex? podcastIndex, }) { return RssItem( title: title ?? this.title, description: description ?? this.description, link: link ?? this.link, categories: categories ?? this.categories, guid: guid ?? this.guid, pubDate: pubDate ?? this.pubDate, author: author ?? this.author, comments: comments ?? this.comments, image: image ?? this.image, source: source ?? this.source, content: content ?? this.content, media: media ?? this.media, enclosure: enclosure ?? this.enclosure, dc: dc ?? this.dc, itunes: itunes ?? this.itunes, podcastIndex: podcastIndex ?? this.podcastIndex, ); } void buildXml(XmlBuilder builder) { builder.element("item", nest: () { if (title != null) { builder.element("title", nest: title!); } if (link != null) { builder.element("link", nest: link!); } if (description != null) { builder.element("description", nest: description!); } if (pubDate != null) { builder.element("pubDate", nest: pubDate); } if (guid != null) { builder.element("guid", nest: guid); } if (author != null) { builder.element("author", nest: author); } if (image != null) { builder.element("image", nest: image); } }); } }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
hi please add this code i just add image to this one manually if you add it in future its very helpful for me i can't contribute to fix it myself
The text was updated successfully, but these errors were encountered: