menu
helpers package
documentation
helpers/extensions/list_merging.dart
ListMerging<T>
removeMapDuplicates<E> method
removeMapDuplicates<E> method
dark_mode
light_mode
removeMapDuplicates<
E
>
method
List
<
E
>
removeMapDuplicates
<
E
>(
E
f
(
T
e
)
)
Implementation
List<E> removeMapDuplicates<E>(E Function(T e) f) { return map(f).toSet().toList(); }
helpers package
documentation
helpers/extensions/list_merging
ListMerging<T>
removeMapDuplicates<E> method
ListMerging extension on
List
<
T
>