getCurrentScope static method

String? getCurrentScope()

Get the most recent scope (top of stack)

Implementation

static String? getCurrentScope() {
  return _scopeStack.isEmpty ? null : _scopeStack.last;
}