inverse property
Comparator<T>
get
inverse
The inverse ordering of this comparator.
Implementation
Comparator<T> get inverse => (T a, T b) => this(b, a);
The inverse ordering of this comparator.
Comparator<T> get inverse => (T a, T b) => this(b, a);