await sdk.withFeatureFlag('your-feature-flag-key', async (featureFlagValue) => {
// This code will be executed ONLY if the value of `your-feature-flag-key` is truthy.
// The parameter received by the callback - `featureFlagValue` - will contain the
// value of the feature flag.