sortChronologically method

void sortChronologically()

Sorts this list chronologically in-place.

Implementation

void sortChronologically() {
  sort((a, b) => a.compareTo(b));
}