whereContainsAll method

ConversationQuery whereContainsAll(
  1. String key,
  2. List values
)

The array corresponding to key contains all elements in values.

Implementation

ConversationQuery whereContainsAll(
  String key,
  List values,
) {
  condition.whereContainsAll(key, values);
  return this;
}