We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eeda4ec commit da300e4Copy full SHA for da300e4
example/lib/reducers/app_state.dart
@@ -24,8 +24,10 @@ abstract class AppStateActions extends ReduxActions {
24
_setCurrentGroupReducer(AppState state, Action<int> action, AppStateBuilder builder) =>
25
builder..currentGroup = action.payload;
26
27
-_setBogus(AppState state, Action<int> action, AppStateBuilder builder) =>
28
- builder..bogus += action.payload;
+_setBogus(AppState state, Action<int> action, AppStateBuilder builder) {
+ print("set bogus handled");
29
+ return builder..bogus += action.payload;
30
+}
31
32
final _reducers = (new ReducerBuilder<AppStateBuilder>()
33
..add<int>(AppStateActionsNames.setCurrentGroup, _setCurrentGroupReducer)
0 commit comments