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