whereTypes method

Stream<Action> whereTypes(
  1. List<String> actionTypes
)

Implementation

Stream<Action> whereTypes(List<String> actionTypes) =>
    _dispatcher.where((action) => actionTypes.contains(action.type));