The Webfeed Flutter package for Appeto SDK.
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

22 líneas
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. }