sort method

Future<void> sort()

Implementation

Future<void> sort() async {
  benches.sort((a, b) => a.average.compareTo(b.average));
}