Actions class

Actions used to filter the action.

It has four different filter methods -isA(), whereType(), whereTypes(), and where()

Constructors

Actions(BehaviorSubject<Action> _dispatcher)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

isA<T>() Stream<T>
action$.isA<SearchInputAcction>()
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited
where(ActionsFilterCallback callback) Stream<Action>
action$.where((action)=>action.type=='foo')
whereType(String actionType) Stream<Action>
action$.whereType('foo')
whereTypes(List<String> actionTypes) Stream<Action>
action$.whereTypes(['foo', 'bar'])

Operators

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