Yusuf
Yusuf
I had the same issue. Marking properties with `required` as the example below will fix it. @jeanmatthieud ```dart class Snip { final String filter; Snip({ required this.filter, }); } ```
Hi @vytautas-pranskunas-, We can have this feature for iOS but it seems there is no way to do it for Android. We are using `EXTRA_ALLOW_MULTIPLE` to fetch multiple images on...
[This PR](https://github.com/flutter/plugins/pull/2640) would be a possible solution as well (for image_picker). It basically implements the first suggestion from [this comment](https://github.com/flutter/flutter/issues/35784#issuecomment-516243057) (that is pointed by @renefloor above ) I guess.
Great! I will send the PR.