orderBy property

String? orderBy
getter/setter pair

How the results should be sorted.

Presently, the only permitted values are "timestamp asc" (default) and "timestamp desc". The first option returns entries in order of increasing values of LogEntry.timestamp (oldest first), and the second option returns entries in order of decreasing timestamps (newest first). Entries with equal timestamps are returned in order of their insert_id values.

Optional.

Implementation

core.String? orderBy;