operator <= method

bool operator <=(
  1. DateTime other
)

Compare DateTime with DateTime less than or equal.

Implementation

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