[go: nahoru, domu]

Skip to content

Commit

Permalink
Merge pull request #1 from jrg1993/jrg1993-old-build-init-decrement
Browse files Browse the repository at this point in the history
Update build_init_old.dart
  • Loading branch information
jrg1993 committed May 16, 2024
2 parents df322fc + f887cf7 commit 0aa94cc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class CounterNotifier extends StateNotifier<int> {
CounterNotifier() : super(0);

void increment() => state++;
void decrement() => state++;
void decrement() => state--;
}

final counterNotifierProvider = StateNotifierProvider<CounterNotifier, int>((ref) {
Expand Down

0 comments on commit 0aa94cc

Please sign in to comment.