operator > method

bool operator >(
  1. Time other
)

Whether this Time is longer than other.

Implementation

bool operator >(Time other) => ticks > other.ticks;