We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bfb75a1 + 90a0717 commit 09a4749Copy full SHA for 09a4749
example/lib/main.dart
@@ -22,7 +22,7 @@ void main() {
22
class FlutterReduxApp extends StatelessWidget {
23
// Create your store as a final variable in a base Widget. This works better
24
// with Hot Reload than creating it directly in the `build` function.
25
- final store = new Store(counterReducer, initialState: 0);
+ final store = new Store<int>(counterReducer, initialState: 0);
26
27
@override
28
Widget build(BuildContext context) {
0 commit comments