ServiceLifetime enum
Describes the lifetime of a service.
Values
- singleton → const ServiceLifetime
-
Only one instance of the service will be registered in the service provider.
- transient → const ServiceLifetime
-
Every time the service is requested, a new instance will be created.
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Constants
-
values
→ const List<
ServiceLifetime> - A constant List of the values in this enum, in order of their declaration.