The Webfeed Flutter package for Appeto SDK.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
375 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. }