keyedImplementationFactory property
KeyedImplementationFactory?
get
keyedImplementationFactory
Gets the factory used for creating service instances.
Implementation
KeyedImplementationFactory? get keyedImplementationFactory {
if (!isKeyedService) {
throwKeyedDescriptor();
}
return _implementationFactory as KeyedImplementationFactory;
}