sOrder method

SupaOrderStreamModifier<B, R> sOrder(
  1. SupaColumn<B, dynamic, dynamic> column, {
  2. bool ascending = true,
})

Order the results

Orders the result with the specified column.

column: The column to order by.

ascending: Whether to order in ascending order.

nullsFirst: Whether to order nulls first.

Implementation

SupaOrderStreamModifier<B, R> sOrder(
  SupaColumn<B, dynamic, dynamic> column, {
  bool ascending = true,
}) =>
    SupaOrderStreamModifier(column, ascending, this);