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