SupaOrderStreamModifier<B extends SupaCore, R extends SupaRecord<B>> constructor

  1. @internal
const SupaOrderStreamModifier<B extends SupaCore, R extends SupaRecord<B>>(
  1. SupaColumn<B, dynamic, dynamic> column,
  2. bool ascending,
  3. 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,
);