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