ListExtension<T> extension

on

Methods

count(T obj, {bool predicate(T)?}) int
Count the items that matches with yout object data, or use predicate to match
exist({required bool predicate(T reference)}) bool
Verify if a element exist using a predicate that match
ignoreWhile({required bool ignoreIf(T predicate)}) List<T>
Ignore the item if predicate match
merge(List<List<T>> listToAdd) → void
Merge to many list as we wants in a same list
updateWhere({required T data, required Predicate<T> predicate}) List<T>
Update the data where predicate match