SupaOrderModifier<B extends SupaCore, R extends SupaRecord<B> > constructor
- @internal
- SupaColumn<
B, dynamic, dynamic> column, - bool ascending,
- bool nullsFirst,
- SupaModifier<
B, R, dynamic, PostgrestTransformBuilder< ? previousModifier,List< , PostgrestBuilder>Map< >String, dynamic> >
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 SupaOrderModifier(
this.column,
this.ascending,
this.nullsFirst,
super.previousModifier,
);