compareTo method

int compareTo(
  1. Time other
)

Implementation

int compareTo(Time other) {
  return ticks.compareTo(other.ticks);
}