singleton<TService> static method

ServiceDescriptor singleton<TService>(
  1. ImplementationFactory implementationFactory
)

Creates an instance of ServiceDescriptor with the specified TService, implementationFactory and the ServiceLifetime.singleton.

Implementation

static ServiceDescriptor singleton<TService>(
  ImplementationFactory implementationFactory,
) =>
    ServiceDescriptor._factory(
      TService,
      implementationFactory,
      ServiceLifetime.singleton,
    );