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

19 行
380 B

  1. import 'package:xml/xml.dart';
  2. class Statistics {
  3. final int? views;
  4. final int? favorites;
  5. Statistics({
  6. this.views,
  7. this.favorites,
  8. });
  9. factory Statistics.parse(XmlElement? element) {
  10. return Statistics(
  11. views: int.tryParse(element?.getAttribute('views') ?? '0'),
  12. favorites: int.tryParse(element?.getAttribute('favorites') ?? '0'),
  13. );
  14. }
  15. }