orderByAscending method

LCSearchQuery<T> orderByAscending(
  1. String key
)

Implementation

LCSearchQuery<T> orderByAscending(String key) {
  _orders = <String>[key];
  return this;
}