source property
Determines the source of the current effective value.
Implementation
FeatureFlagSource get source {
if (isForced) return FeatureFlagSource.forced;
if (overrideValue != null) return FeatureFlagSource.override;
if (isRemote) return FeatureFlagSource.remote;
return FeatureFlagSource.local;
}