operator <= method

bool operator <=(
  1. Date other
)

Whether this date is no later than other.

Implementation

bool operator <=(Date other) => _daysSinceEpoch <= other._daysSinceEpoch;