The Webfeed Flutter package for Appeto SDK.
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

19 rindas
296 B

  1. import 'package:xml/xml.dart';
  2. class Rating {
  3. final String? scheme;
  4. final String? value;
  5. Rating({
  6. this.scheme,
  7. this.value,
  8. });
  9. factory Rating.parse(XmlElement element) {
  10. return Rating(
  11. scheme: element.getAttribute('scheme'),
  12. value: element.text,
  13. );
  14. }
  15. }