orderByDescending method

LCQuery<T> orderByDescending(
  1. String key
)

Implementation

LCQuery<T> orderByDescending(String key) {
  condition.orderByDecending(key);
  return this;
}