Actions class

used for making effects applying filters on action type(s).

Example

Stream<Action> effectForAsyncInc(Actions action$, Store store$) {
   return action$
       .whereType(ActionTypes.AsyncInc)
       .debounceTime(Duration(milliseconds: 550))
       .mapTo(Action(type: ActionTypes.Inc));
 }

Constructors

Actions(BehaviorSubject<Action> _dispatcher)

Properties

hashCode int
The hash code for this object. [...]
read-only, inherited
runtimeType Type
A representation of the runtime type of the object.
read-only, inherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a non-existent method or property is accessed. [...]
inherited
toString() String
Returns a string representation of this object.
inherited
whereType(String actionType) Stream<Action>
This function takes String actionType param and apply filter on actionType and return Stream
whereTypes(List<String> actionTypes) Stream<Action>
This function takes List actionTypes param and apply filter on actionTypes and return Stream

Operators

operator ==(Object other) bool
The equality operator. [...]
inherited