create_bool_feature_flag {featureflag} | R Documentation |
Creates an instance of a bool feature flag with the specified bool value.
create_bool_feature_flag(value)
value |
single logical determining whether the flag should be enabled |
feature flag object of the bool value
{
enabled_flag <- create_bool_feature_flag(TRUE)
disabled_flag <- create_bool_feature_flag(FALSE)
}