orderByDescending method

ConversationQuery orderByDescending(
  1. String key
)

The descending order by the value corresponding to key, support for multi-field sorting with comma.

Implementation

ConversationQuery orderByDescending(
  String key,
) {
  condition.orderByDecending(key);
  return this;
}