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