Pascal Welsch
Pascal Welsch
I like the idea but I'm unsure if we should use [`ListEquality`](https://api.flutter.dev/flutter/package-collection_collection/ListEquality-class.html) or [`DeepCollectionEquality`](https://api.flutter.dev/flutter/package-collection_collection/DeepCollectionEquality/DeepCollectionEquality.html). Please describe your use case and we can see which API fits best. Alternatively you could...
@leisim ☝️
I like it, please open a PR :)
We should avoid adding too many extensions on `String`. Strings are widely used and most don't represent a phone number or an email address. For such cases I suggest creating...
I found myself using this a few times. Although I think `pattern matching` or at least a `switch case with return type` will land in Dart in the next 2...
I've constantly ran into similar problems when parsing json responses, that's why I created the [`deep_pick`](https://github.com/passsy/deep_pick) package. Your code would become: ```dart List? hoge = pick(map, 'hoge').asListOrNull(); List hoge =...
The two lambdas that needs to be passed in `modifyWhere` feel redundant. Why not have one? Two versions in the kotlin world popped into my mind: ```kotlin inline fun MutableList.mutate(transform:...
@Kavantix Would be great if this lands in `master` soon :)
@dylanwuzh push
@jorgecoca @felangel push. Is anyone of you still maintaining this project?