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ů.
|
- import 'package:xml/xml.dart';
-
- class Rights {
- final String? status;
-
- Rights({
- this.status,
- });
-
- factory Rights.parse(XmlElement element) {
- return Rights(
- status: element.getAttribute('status'),
- );
- }
- }
|