transient<TService> static method
Creates an instance of ServiceDescriptor with the specified
TService, implementationFactory and the ServiceLifetime.transient.
Implementation
static ServiceDescriptor transient<TService>(
ImplementationFactory implementationFactory,
) =>
ServiceDescriptor._factory(
serviceType: TService,
factory: implementationFactory,
lifetime: ServiceLifetime.transient,
);