The Webfeed Flutter package for Appeto SDK.
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

23 wiersze
401 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. static parse(XmlElement? element) {
  12. if (element == null) return null;
  13. return License(
  14. type: element.getAttribute('type'),
  15. href: element.getAttribute('href'),
  16. value: element.text,
  17. );
  18. }
  19. }