The Webfeed Flutter package for Appeto SDK.
25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- import 'package:xml/xml.dart';
-
- class Rights {
- final String? status;
-
- Rights({
- this.status,
- });
-
- static parse(XmlElement? element) {
- if (element == null) return null;
- return Rights(
- status: element.getAttribute('status'),
- );
- }
- }
|