logs property

bool? get logs

If set to true, the DocumentReader logs will be shown in the console.

Implementation

bool? get logs => _logs;
set logs (bool? val)

Implementation

set logs(bool? val) {
  _logs = val;
  _set({"logs": val});
}