asc method

ComposableOrdering asc({
  1. NullsOrder? nulls,
})

Sort this column in ascending order (1 -> 10 | A -> Z | Jan 1 -> Dec 31).

The optional nulls parameter can be used to control whether NULL values in the column should come for or after non-null values.

Implementation

ComposableOrdering asc({NullsOrder? nulls}) => $composableOrdering(
    {OrderingBuilder(OrderingMode.asc, column, nulls: nulls)});