dimeGetScope function

DimeScope? dimeGetScope(
  1. String name
)

Gets the scope from root Scope by name. Will return null if no scope found.

Implementation

DimeScope? dimeGetScope(String name) {
  return _rootScope.getScope(name);
}