isDisabled

Checks if this feature is disabled.

This is a convenience extension property that returns the inverse of Feature.isEnabled. Useful for more readable conditional logic when checking for disabled features.

Example:

if (feature.isDisabled) {
logger.info("Feature ${feature.uid} is currently disabled")
}

Return

true if the feature is disabled (isEnabled = false), false otherwise