Actions class
used for making effects applying filters on action type(s).
Example
Stream<Action> effectForAsyncInc(Actions action$, Store store$) {
return action$
.ofType(ActionTypes.AsyncInc)
.debounceTime(Duration(milliseconds: 550))
.mapTo(Action(type: ActionTypes.Inc));
}
Constructors
- Actions(Dispatcher _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
-
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 -
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
Operators
-
operator ==(
dynamic other) → bool -
The equality operator. [...]
inherited