features property
List<PremiumFeature>
get
features
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
List<PremiumFeature> get features {
try {
if (rawData["features"] is List == false) {
return [];
}
return (rawData["features"] as List).map((e) => PremiumFeature(e as Map)).toList().cast<PremiumFeature>();
} catch (e) {
return [];
}
}
set
features
(List<PremiumFeature> values)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set features(List<PremiumFeature> values) {
rawData["features"] = values.map((value) => value.toJson()).toList();
}