match_sorter 0.2.0 match_sorter: ^0.2.0 copied to clipboard
A dart adaptation of the match-sorter package for javascript
example/match_sorter_example.dart
import 'package:match_sorter/match_sorter.dart';
void main() {
List<Item> items = stringsToItems(['Chakotay', 'Brunt', 'Charzard']);
var searchQuery = 'Ch';
List<Item> matchedItems = matchSorter(
searchQuery: searchQuery,
items: items,
);
print(matchedItems);
// [{ value: Chakotay }, { value: Charzard }]
}