operator > method

bool operator >(
  1. LocalDate other
)

Greater than operator.

Implementation

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