clear static method

dynamic clear()

Implementation

static clear() {
  final dep = _globalDependences;
  _globalDependences = null;
  if (dep is NopDependencies) {
    dep.removeCurrent();
  }
}