isSortedBy<T, K extends Comparable<K> > function
Matches Iterables which are sorted by the keyOf property.
Implementation
Matcher isSortedBy<T, K extends Comparable<K>>(K Function(T) keyOf) =>
_IsSorted<T, K>(keyOf, (a, b) => a.compareTo(b));