operator >= method

bool operator >=(
  1. OperationVersion? other
)

Compares whether OperationVersion is bigger or equals to other.

Implementation

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

  return val.compareTo(other.val) <= 0;
}