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