whereContainsAll method
The array corresponding to key
contains all elements in values
.
Implementation
ConversationQuery whereContainsAll(
String key,
List values,
) {
condition.whereContainsAll(key, values);
return this;
}
The array corresponding to key
contains all elements in values
.
ConversationQuery whereContainsAll(
String key,
List values,
) {
condition.whereContainsAll(key, values);
return this;
}