operator >= method

bool operator >=(
  1. Time other
)

Whether this Time is longer than or equal to other.

Implementation

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