getCurrentScope static method
Get the most recent scope (top of stack)
Implementation
static String? getCurrentScope() {
return _scopeStack.isEmpty ? null : _scopeStack.last;
}
Get the most recent scope (top of stack)
static String? getCurrentScope() {
return _scopeStack.isEmpty ? null : _scopeStack.last;
}