1
0
mirror of https://github.com/stonega/tsacdop synced 2025-01-10 14:23:08 +01:00
tsacdop-podcast-app-android/lib/webfeed/domain/media/rating.dart
2020-02-09 20:29:09 +08:00

22 lines
350 B
Dart

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