searchFor method
Implementation
Future<List<Resource>> searchFor(
String password, String resourceType, String field, String value) async {
_setStoreType(resourceType);
final finder = Finder(filter: Filter.equals(field, value));
return await _search(password, finder);
}