openRootScope static method

Scope openRootScope()

RU: Метод открывает главный Scope. ENG: The method opens the main Scope.

return

Implementation

static Scope openRootScope() {
  _rootScope ??= Scope(null);
  return _rootScope!;
}