removeAll method
Implementation
ChipSuggestions<T> removeAll(Iterable<T>? chips) {
final set = {...?chips};
return ChipSuggestions(
match: match,
suggestions: [...suggestions!.where((s) => !set.contains(s))]);
}
ChipSuggestions<T> removeAll(Iterable<T>? chips) {
final set = {...?chips};
return ChipSuggestions(
match: match,
suggestions: [...suggestions!.where((s) => !set.contains(s))]);
}