orderByAscending method

ConversationQuery orderByAscending(
  1. String key
)

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

Implementation

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