createScope static method
Create a new scope - the main way to work with dependencies
Implementation
static ZenScope createScope({String? name, ZenScope? parent}) {
return ZenScopeManager.getOrCreateScope(
name: name ?? 'Scope_${DateTime.now().millisecondsSinceEpoch}',
parentScope: parent,
autoDispose: false,
);
}