sort property

List<SortOption>? sort

The sorting used for the members matching the filters.

Sorting is based on field and direction, multiple sorting options can be provided.

Direction can be ascending or descending.

Implementation

final List<SortOption>? sort;
void sort=(List<SortOption>? value)

Allows for the change of the query sort used for member queries.

Use this if you need to support runtime sort changes, through custom sort UI.

Implementation

set sort(List<SortOption>? value) => _activeSort = value;