operator >= method

bool operator >=(
  1. LocalDate other
)

Greater than or equals operator.

Implementation

bool operator >=(LocalDate other) => compareTo(other) >= 0;