The Webfeed Flutter package for Appeto SDK.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

15 righe
278 B

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