whereFullText method

void whereFullText (String key, String text)

Adds a constraint for finding string values that contain a provided string using Full Text Search

Implementation

void whereFullText(String key, String text) {
  _addCondition(key, "whereFullText", text);
}