Order class

Groups query order flags.

Constructors

Order()

Properties

hashCode int
The hash code for this object.
no setterinherited
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
toString() String
A string representation of this object.
inherited

Operators

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

Static Properties

caseSensitive int
Sorts upper case letters (e.g. 'Z') before lower case letters (e.g. 'a'). If not specified, the default is case insensitive for ASCII characters.
final
descending int
Reverts the order from ascending (default) to descending.
final
nullsAsZero int
null values should be treated equal to zero (scalars only).
final
nullsLast int
null values will be put last. If not specified, by default null values will be put first.
final
unsigned int
For integers only: changes the comparison to unsigned. The default is signed, unless the property is annotated with @Property(signed: false).
final