operator >= method

bool operator >=(
  1. MonetizationSettingsVersion? other
)

Compares whether MonetizationSettingsVersion is bigger or equals to other.

Implementation

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

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