recursive property

bool get recursive

Whether watching should include all child entries recursively. It can be true for directories only.

Implementation

bool get recursive => _wrapped.recursive;
set recursive (bool v)

Implementation

set recursive(bool v) {
  _wrapped.recursive = v;
}