whereTypes method
This function takes List
Implementation
Stream<Action> whereTypes(List<String> actionTypes) {
return _dispatcher.streamController.where((action) =>
actionTypes.indexWhere((type) => type == action.type) != -1);
}
This function takes List
Stream<Action> whereTypes(List<String> actionTypes) {
return _dispatcher.streamController.where((action) =>
actionTypes.indexWhere((type) => type == action.type) != -1);
}