OrderBy class

Order bys define how rows will be sorted in the response.

For example, ordering rows by descending event count is one ordering, and ordering rows by the event name string is a different ordering.

Constructors

OrderBy({bool? desc, DimensionOrderBy? dimension, MetricOrderBy? metric, PivotOrderBy? pivot})
OrderBy.fromJson(Map json_)

Properties

desc ↔ bool?
If true, sorts by descending order.
getter/setter pair
dimension ↔ DimensionOrderBy?
Sorts results by a dimension's values.
getter/setter pair
hashCode → int
The hash code for this object.
no setterinherited
metric ↔ MetricOrderBy?
Sorts results by a metric's values.
getter/setter pair
pivot ↔ PivotOrderBy?
Sorts results by a metric's values within a pivot column group.
getter/setter pair
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() → Map<String, dynamic>
toString() → String
A string representation of this object.
inherited

Operators

operator ==(Object other) → bool
The equality operator.
inherited