searchById method

List<CalibreWeebi<ArticleRawAbstract>> searchById(
  1. String queryString
)

Implementation

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