value property

bool value
final

Whether the pod should be lazy

Example:

@Lazy()
class ExpensiveService {}

@Lazy(false)
class AlwaysEagerService {}

Implementation

final bool value;