whereContainedIn method
values
contains value corresponding to key
, or values
contains at least one element in the array corresponding to key
.
Implementation
ConversationQuery whereContainedIn(
String key,
List values,
) {
condition.whereContainedIn(key, values);
return this;
}