whereMatches method

ConversationQuery whereMatches(
  1. String key,
  2. String regex, {
  3. String? modifiers,
})

The string corresponding to key matches regex. modifiers reference:

Implementation

ConversationQuery whereMatches(
  String key,
  String regex, {
  String? modifiers,
}) {
  condition.whereMatches(key, regex, modifiers);
  return this;
}