implementationInstance property

Object? get implementationInstance

Gets the instance that implements the service.

Implementation

Object? get implementationInstance {
  if (isKeyedService) {
    throwKeyedDescriptor();
  }
  return _implementationInstance;
}