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