implementationFactory property

ImplementationFactory? get implementationFactory

Gets the factory used for creating service instances.

Implementation

ImplementationFactory? get implementationFactory {
  if (isKeyedService) {
    throwKeyedDescriptor();
  }
  return _implementationFactory as ImplementationFactory;
}