searchById method
Implementation
List<CalibreWeebi> searchById(String queryString) {
return List<CalibreWeebi>.of(all
.where((p) => p.isCountable)
.where((p) => p.id.toString().contains(queryString.trim()))
.toList());
}
List<CalibreWeebi> searchById(String queryString) {
return List<CalibreWeebi>.of(all
.where((p) => p.isCountable)
.where((p) => p.id.toString().contains(queryString.trim()))
.toList());
}