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