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.

22 rindas
371 B

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