logs property

bool? logs

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

Implementation

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

Implementation

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