whereContains method

ConversationQuery whereContains(
  1. String key,
  2. String subString
)

The string corresponding to key has a subString.

Implementation

ConversationQuery whereContains(
  String key,
  String subString,
) {
  condition.whereContains(key, subString);
  return this;
}