where method

Stream<Action> where(
  1. ActionsFilterCallback callback
)
action$.where((action)=>action.type=='foo')

Implementation

Stream<Action> where(ActionsFilterCallback callback) =>
    _dispatcher.where(callback);