operator >= method

bool operator >=(
  1. DateTime other
)

Checks if the current date and time is greater than or equal to the given date and time.

Implementation

bool operator >=(DateTime other) => this > other || this == other;