Skip to content
This repository was archived by the owner on Jul 19, 2025. It is now read-only.

Commit 6ee764b

Browse files
committed
AI assistent deleted too much
1 parent 18b9f51 commit 6ee764b

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
[7.2.2] - 25.12.2024
2+
* another fix
13
[7.2.1] - 25.12.2024
24
* logic fix
35
[7.2.0] - 25.12.2024

lib/command_builder.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ class CommandBuilder<TParam, TResult> extends StatelessWidget {
4747
onData: onData != null
4848
? (data, paramData) => onData!.call(context, data, paramData)
4949
: null,
50+
onSuccess: onSuccess != null
51+
? (paramData) => onSuccess!.call(context, paramData)
52+
: null,
5053
onNullData: onNullData != null
5154
? (paramData) => onNullData!.call(context, paramData)
5255
: null,

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_command
22
description: flutter_command is a way to manage your state based on `ValueListenable` and the `Command` design pattern.
3-
version: 7.2.1
3+
version: 7.2.2
44
homepage: https://github.com/escamoteur/flutter_command
55

66
environment:

0 commit comments

Comments
 (0)