operator > method

bool operator >(
  1. Version other
)

Returns true if this version is strictly greater than other.

Implementation

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