The Webfeed Flutter package for Appeto SDK.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 line
314 B

  1. import 'package:xml/xml.dart';
  2. class ItunesImage {
  3. final String? href;
  4. ItunesImage({this.href});
  5. static parse(XmlElement? element) {
  6. ItunesImage? result;
  7. if (element == null) return null;
  8. result = ItunesImage(
  9. href: element.getAttribute('href')?.trim(),
  10. );
  11. return result;
  12. }
  13. }