allFlags method

Map<String, LDValue> allFlags()

Returns a map of all feature flags for the current context, without sending evaluation events to LaunchDarkly.

The resultant map contains an entry for each known flag, the key being the flag's key and the value being its value as an LDValue.

Implementation

Map<String, LDValue> allFlags() {
  return _client.allFlags();
}