The Webfeed Flutter package for Appeto SDK.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

22 řádky
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. }