SupaOrderStreamModifier<B extends SupaCore, R extends SupaRecord<B> > constructor
- @internal
- SupaColumn<
B, dynamic, dynamic> column, - bool ascending,
- SupaStreamModifier<
B, R> ? previousModifier
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
@internal
const SupaOrderStreamModifier(
this.column,
this.ascending,
super.previousModifier,
);