mirror of
https://github.com/stonega/tsacdop
synced 2025-02-10 08:30:45 +01:00
15 lines
290 B
Dart
15 lines
290 B
Dart
|
import 'package:xml/xml.dart';
|
||
|
|
||
|
class RssItunesImage {
|
||
|
final String href;
|
||
|
|
||
|
RssItunesImage({this.href});
|
||
|
|
||
|
factory RssItunesImage.parse(XmlElement element) {
|
||
|
if (element == null) return null;
|
||
|
return RssItunesImage(
|
||
|
href: element.getAttribute("href")?.trim(),
|
||
|
);
|
||
|
}
|
||
|
}
|