operator > method

bool operator >(
  1. OperationVersion? other
)

Compares whether OperationVersion is bigger than other.

Implementation

bool operator >(OperationVersion? other) {
  if (other == null) {
    return false;
  }

  return val.compareTo(other.val) == -1;
}