orderBy property

  1. @TagNumber(3)
String get orderBy

Optional. 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.

Implementation

@$pb.TagNumber(3)
$core.String get orderBy => $_getSZ(1);
  1. @TagNumber(3)
set orderBy (String v)

Implementation

@$pb.TagNumber(3)
set orderBy($core.String v) {
  $_setString(1, v);
}