debugSaveLogs property

bool? debugSaveLogs

If set to true, text logs will be saved to the application's directory.

Implementation

bool? get debugSaveLogs => _debugSaveLogs;
void debugSaveLogs=(bool? val)

Implementation

set debugSaveLogs(bool? val) {
  _debugSaveLogs = val;
  _set({"debugSaveLogs": val});
}