order method

RealtimeManager<TModel> order(
  1. TetherColumn column, {
  2. bool ascending = true,
})

Implementation

RealtimeManager<TModel> order(TetherColumn column, {bool ascending = true}) {
  _orderConfig = RealtimeManagerOrderConfig(
    column: column.originalName,
    ascending: ascending,
  );
  return this;
}