update_active_notifications property
UpdateActiveNotifications
get
update_active_notifications
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
UpdateActiveNotifications get update_active_notifications {
try {
if (rawData["update_active_notifications"] is Map == false) {
return UpdateActiveNotifications({});
}
return UpdateActiveNotifications(rawData["update_active_notifications"] as Map);
} catch (e) {
return UpdateActiveNotifications({});
}
}
set
update_active_notifications
(UpdateActiveNotifications value)
Generate By AZKADEV | Azka Axelion Gibran Script Dont edit by hand or anything manual
Implementation
set update_active_notifications(UpdateActiveNotifications value) {
rawData["update_active_notifications"] = value.toJson();
}