tsacdop-podcast-app-android/lib/webfeed/domain/media/license.dart

25 lines
424 B
Dart

import 'package:xml/xml.dart';
class License {
final String type;
final String href;
final String value;
License({
this.type,
this.href,
this.value,
});
factory License.parse(XmlElement element) {
if (element == null) {
return null;
}
return new License(
type: element.getAttribute("type"),
href: element.getAttribute("href"),
value: element.text,
);
}
}