operator >= method

bool operator >=(
  1. DateTime other
)

Compare DateTime with DateTime greater than or equal.

Implementation

bool operator >=(DateTime other) => isAfterOrEqual(other);