debugSaveLogs property
bool?
get
debugSaveLogs
If set to true
, text logs will be saved to the application's directory.
Implementation
bool? get debugSaveLogs => _debugSaveLogs;
set
debugSaveLogs
(bool? val)
Implementation
set debugSaveLogs(bool? val) {
_debugSaveLogs = val;
_set({"debugSaveLogs": val});
}