operator <= method

dynamic operator <=(
  1. DateTime other
)

Equivalent to isBefore(other) || isAtSameMomentAs(other)

Implementation

operator <=(DateTime other) => isBefore(other) || isAtSameMomentAs(other);