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