searchByTitle method
Implementation
List<CalibreWeebi> searchByTitle(String queryString) {
return List<CalibreWeebi>.of(all
.where((p) => p.isNotQuickSpend)
.where((p) => p.title.clean.contains(queryString.clean))
.toList());
}
List<CalibreWeebi> searchByTitle(String queryString) {
return List<CalibreWeebi>.of(all
.where((p) => p.isNotQuickSpend)
.where((p) => p.title.clean.contains(queryString.clean))
.toList());
}