operator >= method

bool operator >=(
  1. Date other
)

Whether this date is no earlier than other.

Implementation

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