orderByAscending method

LCQuery<T> orderByAscending(
  1. String key
)

Implementation

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