addOrder method

void addOrder(
  1. SortOrder<T> order
)

Adds a new sort order to the collection.

Implementation

void addOrder(SortOrder<T> order) {
  _orders[order.id] = order;
}