OrderBy class

For multiple order by, use OrderBy.and ie;

  OrderBy("date");
  OrderBy("date").and(OrderBy("name", ascending: false));

Constructors

OrderBy(String columnName, {bool? ascending})

Properties

ascending bool?
final
columnName String
final
hashCode int
The hash code for this object.
no setterinherited
prev String
getter/setter pair
query String
no setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

and(OrderBy orderBy) OrderBy
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