The Webfeed Flutter package for Appeto SDK.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

19 行
281 B

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