createScope method

Scope createScope([
  1. Koin? koin
])

Implementation

Scope createScope([Koin? koin]) {
  koin ??= KoinContextHandler.get();
  return koin.createScopeWithQualifier(scopeId, scopeName, this);
}