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,
- });
-
- factory Rights.parse(XmlElement element) {
- return Rights(
- status: element.getAttribute('status'),
- );
- }
- }
|