whereStartsWith method

ConversationQuery whereStartsWith(
  1. String key,
  2. String prefix
)

The string corresponding to key has a prefix.

Implementation

ConversationQuery whereStartsWith(
  String key,
  String prefix,
) {
  condition.whereStartsWith(key, prefix);
  return this;
}