operator >= method

bool operator >=(
  1. Version other
)

Returns true if this version is greater than or equal to other.

Implementation

bool operator >=(Version other) => compareTo(other) >= 0;