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