StringFeatureFlag

abstract class StringFeatureFlag(val key: String, val default: String) : FeatureFlag<String>

A simple String feature flag.

Constructors

Link copied to clipboard
constructor(key: String, default: String)

Properties

Link copied to clipboard
open override val default: String

The default option to be assumed when no backing value is present.

Link copied to clipboard
open override val key: String

The value that's used to extract this feature flag value in the underlying storage mechanism.