isAtOrAfter method

bool isAtOrAfter(
  1. DateTime other
)

Returns true if this occurs at or after other, accounting for time zones.

Delegates to DateTime's built-in comparison methods and therefore obeys the same contract.

Implementation

bool isAtOrAfter(DateTime other) => isAtSameMomentAs(other) || isAfter(other);