Scope constructor

Scope({
  1. required String id,
  2. required Koin koin,
  3. required ScopeDefinition scopeDefinition,
  4. dynamic source,
})

Implementation

Scope(
    {required this.id,
    required this.koin,
    required this.scopeDefinition,
    this.source}) {
  _instanceRegistry = InstanceRegistry(koin, this);
}