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