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