theme property
String?
get
theme
Implementation
String? get theme {
try {
if (rawData["theme"] is String == false){
return null;
}
return rawData["theme"] as String;
} catch (e) {
return null;
}
}
set
theme
(String? value)
Implementation
set theme(String? value) {
rawData["theme"] = value;
}