isActive static method

bool isActive(
  1. String scopeName
)

Check if a scope is currently in the stack

Implementation

static bool isActive(String scopeName) {
  return _scopeStack.contains(scopeName);
}