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