searchFor method

Future<List<Resource>> searchFor (
  1. String password,
  2. String resourceType,
  3. String field,
  4. String value
)

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);
}