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

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