keyedImplementationInstance property

Object? get keyedImplementationInstance

Gets the instance that implements the service.

Implementation

Object? get keyedImplementationInstance {
  if (!isKeyedService) {
    throwNonKeyedDescriptor();
  }

  return _implementationInstance;
}