operator <= method

bool operator <=(
  1. DateTime other
)

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

Alias for isAtOrBefore.

Implementation

bool operator <=(DateTime other) => isAtOrBefore(other);