The Webfeed Flutter package for Appeto SDK.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
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. }