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