compareTo method

int compareTo(
  1. Guid guid
)

Compares this instance to a specified Guid object and returns an indication of their relative values.

Returns a negative value if this is ordered before other, a positive value if this is ordered after other, or zero if this and other are equivalent.

Implementation

int compareTo(Guid guid) => _guidValue.compareTo(guid._guidValue);