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