operator > method

bool operator >(
  1. dynamic o
)

Determines whether the left-hand Version represents a greater precedence than the right-hand Version.

Implementation

bool operator >(dynamic o) => o is Version && _compare(this, o) > 0;