whereMatches method

void whereMatches (String key, String regex, { String modifiers: '' })

Add a regular expression constraint for finding string values that match the provided regular expression.

This may be slow for large datasets.

Implementation

void whereMatches(String key, String regex, {String modifiers = ''}) {
  _addCondition(key, "whereMatches",
      <String, dynamic>{'regex': regex, 'modifiers': modifiers});
}