operator > method

bool operator >(
  1. MonetizationSettingsVersion? other
)

Compares whether MonetizationSettingsVersion is bigger than other.

Implementation

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

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