orderByChild method

Query orderByChild(
  1. String key
)

Generate a view of the data sorted by values of a particular child key.

Intended to be used in combination with startAt, endAt, or equalTo.

Implementation

Query orderByChild(String key) {
  return Query._(_queryPlatform.orderByChild(key));
}