operator > method
- 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;
}
Compares whether OperationVersion is bigger than other.
bool operator >(OperationVersion? other) {
if (other == null) {
return false;
}
return val.compareTo(other.val) == -1;
}