operator <= method

bool operator <=(
  1. Time other
)

Returns true if this is before or the same as other and false otherwise.

Implementation

bool operator <=(Time other) => compareTo(other) <= 0;