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ů.

17 řádky
261 B

  1. import 'package:xml/xml.dart';
  2. class Rights {
  3. final String? status;
  4. Rights({
  5. this.status,
  6. });
  7. static parse(XmlElement? element) {
  8. if (element == null) return null;
  9. return Rights(
  10. status: element.getAttribute('status'),
  11. );
  12. }
  13. }