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.
|
- import 'package:xml/xml.dart';
-
- class ItunesImage {
- final String href;
-
- ItunesImage({this.href});
-
- factory ItunesImage.parse(XmlElement element) {
- if (element == null) return null;
- return ItunesImage(
- href: element.getAttribute('href')?.trim(),
- );
- }
- }
|