S2GroupSort.byCountInAsc constructor

S2GroupSort.byCountInAsc()

Function to sort the group keys by items count in ascending order

Implementation

factory S2GroupSort.byCountInAsc() => S2GroupSort((S2Group a, S2Group b) {
      return a.count.compareTo(b.count);
    });