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

17 行
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. }