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.
read-onlyinherited
prev String
read / write
query String
read-only
runtimeType Type
A representation of the runtime type of the object.
read-onlyinherited

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