Future<List<dynamic>> find(bool Function(dynamic) finder) async { assert(_box != null, 'the store is not connected'); final list = _box!.values.where(finder); return list.toList(); }