Returns the active PodScope for this context, if any.
May return null if no scope is active.
null
Example:
final scope = context.getScope(); print(scope?.getName()); // e.g., "singleton"
PodScope? scope;