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