updatePath method

void updatePath(
  1. String path
)

Implementation

void updatePath(String path) {
  _changes.add(path);
  if (!_pending) {
    _pending = true;
    DsTimer.callLater(_doUpdate);
  }
}