whereEndsWith method

void whereEndsWith (String key, String suffix)

Add a constraint for finding string values that end with a provided string.

This will be slow for large datasets.

Implementation

void whereEndsWith(String key, String suffix) {
  _addCondition(key, "whereEndsWith", suffix);
}