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