Skip to content

Commit 1b64113

Browse files
committed
+Update dependencies
1 parent d996332 commit 1b64113

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,8 +184,8 @@ final pSummaryMessage = pResultCount.reduce(
184184
PodListBuilder(
185185
podList: [pResultCount, pSummaryMessage],
186186
builder: (context, snapshot) {
187-
final values = snapshot.value.map((e) => e.unwrap());
188-
final [resultCount as int, summaryMessage as String] = values.toList();
187+
final resultCount = pResultCount.getValue();
188+
final message = pSummaryMessage.getValue();
189189
return Card(child: Text(message));
190190
},
191191
);

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repository: https://github.com/robmllze/df_pod
1616
funding:
1717
- https://www.buymeacoffee.com/dev_cetera
1818
description: A package offering tools to manage app state using ValueListenable objects called Pods.
19-
version: 0.18.3
19+
version: 0.18.4
2020
topics:
2121
- bloc
2222
- provider

0 commit comments

Comments
 (0)