Checks if the current date and time is less than or equal to the given date and time.
bool operator <=(DateTime other) => this < other || this == other;