File tree Expand file tree Collapse file tree 3 files changed +6
-2
lines changed
packages/image_picker/image_picker Expand file tree Collapse file tree 3 files changed +6
-2
lines changed Original file line number Diff line number Diff line change
1
+ ## 0.6.7+7
2
+
3
+ * Updating documentation to use isEmpty check.
4
+
1
5
## 0.6.7+6
2
6
3
7
* Update package: e2e -> package: integration_test
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ Android system -- although very rarely -- sometimes kills the MainActivity after
77
77
Future<void> retrieveLostData() async {
78
78
final LostData response =
79
79
await picker.getLostData();
80
- if (response == null ) {
80
+ if (response.isEmpty ) {
81
81
return;
82
82
}
83
83
if (response.file != null) {
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: image_picker
2
2
description : Flutter plugin for selecting images from the Android and iOS image
3
3
library, and taking new pictures with the camera.
4
4
homepage : https://github.com/flutter/plugins/tree/master/packages/image_picker/image_picker
5
- version : 0.6.7+6
5
+ version : 0.6.7+7
6
6
7
7
flutter :
8
8
plugin :
You can’t perform that action at this time.
0 commit comments