OrderTerm.asc constructor
OrderTerm.asc(
- TetherColumn column, {
- bool nullsFirst = false,
Creates an ascending order term.
column
- The column to order bynullsFirst
- Whether NULL values should appear first (default: false)
Implementation
factory OrderTerm.asc(TetherColumn column, {bool nullsFirst = false}) {
return OrderTerm(column, ascending: true, nullsFirst: nullsFirst);
}