isHigherThan method

bool isHigherThan(
  1. Version other
)

Implementation

bool isHigherThan(Version other) =>
    x > other.x ||
    (x == other.x && y > other.y) ||
    (x == other.x && y == other.y && z > other.z) ||
    (x == other.x && y == other.y && z == other.z && bugfix > other.bugfix);