show_alert property
bool?
get
show_alert
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
bool? get show_alert {
try {
if (rawData["show_alert"] is bool == false) {
return null;
}
return rawData["show_alert"] as bool;
} catch (e) {
return null;
}
}
set
show_alert
(bool? value)
Generate By General Universe Script Dont edit by hand or anything manual
Implementation
set show_alert(bool? value) {
rawData["show_alert"] = value;
}