whereEqualTo method
The value corresponding to key
is equal to value
, or the array corresponding to key
contains value
.
Implementation
ConversationQuery whereEqualTo(
String key,
dynamic value,
) {
condition.whereEqualTo(key, value);
return this;
}