whereMatches method

LCQuery<T> whereMatches(
  1. String key,
  2. String regex, {
  3. String? modifiers,
})

Implementation

LCQuery<T> whereMatches(String key, String regex, {String? modifiers}) {
  condition.whereMatches(key, regex, modifiers);
  return this;
}