DependsOn<T> constructor
DependsOn<T> (
- Set<
ReactiveModel> inj, { - bool shouldNotify(
- T? previousState
- int debounceDelay = 0,
- int throttleDelay = 0,
Setting the Injected models dependencies.
Implementation
DependsOn(
Set<ReactiveModel> inj, {
this.shouldNotify,
this.debounceDelay = 0,
this.throttleDelay = 0,
}) : injected = inj.cast<ReactiveModelImp>();