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