PillarEntry constructor

PillarEntry({
  1. required PillarKey key,
  2. required PillarFactoryWithScopeTracking factory,
  3. Object? value,
  4. PillarScope? instanceScope,
})

Implementation

PillarEntry({
  required this.key,
  required this.factory,
  this.value,
  this.instanceScope,
})  : isInstance = value != null,
      effectiveScopeIncludingDependencies = instanceScope;