operator >= method
- 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;
}