The Webfeed Flutter package for Appeto SDK.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

19 řádky
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. }