instance property

WindowController get instance

Zone-local, mutable WindowController.

Implementation

static WindowController get instance {
  return _scope.windowController;
}
set instance (WindowController instance)

Implementation

static set instance(WindowController instance) {
  _hasChangedInstance = true;
  _scope.windowController = instance;
}