sortedChronologically property

List<Hora> get sortedChronologically

Sorts this iterable chronologically.

Implementation

List<Hora> get sortedChronologically {
  final list = toList()..sort((a, b) => a.compareTo(b));
  return list;
}