Skip to content

Commit

Permalink
AI assistent deleted too much
Browse files Browse the repository at this point in the history
  • Loading branch information
escamoteur committed Dec 25, 2024
1 parent 18b9f51 commit 6ee764b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[7.2.2] - 25.12.2024
* another fix
[7.2.1] - 25.12.2024
* logic fix
[7.2.0] - 25.12.2024
Expand Down
3 changes: 3 additions & 0 deletions lib/command_builder.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ class CommandBuilder<TParam, TResult> extends StatelessWidget {
onData: onData != null
? (data, paramData) => onData!.call(context, data, paramData)
: null,
onSuccess: onSuccess != null
? (paramData) => onSuccess!.call(context, paramData)
: null,
onNullData: onNullData != null
? (paramData) => onNullData!.call(context, paramData)
: null,
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: flutter_command
description: flutter_command is a way to manage your state based on `ValueListenable` and the `Command` design pattern.
version: 7.2.1
version: 7.2.2
homepage: https://github.com/escamoteur/flutter_command

environment:
Expand Down

0 comments on commit 6ee764b

Please sign in to comment.