whereEndsWith method

ConversationQuery whereEndsWith(
  1. String key,
  2. String suffix
)

The string corresponding to key has a suffix.

Implementation

ConversationQuery whereEndsWith(
  String key,
  String suffix,
) {
  condition.whereEndsWith(key, suffix);
  return this;
}