Skip to main content
Version: Config V2

Dart (Flutter) SDK Reference

Star on GitHub pub package Dart CI

ConfigCat Dart (Flutter) SDK on GitHub

Getting Started

1. Add the ConfigCat SDK to your project

dart pub add configcat_client

Or put the following directly to your pubspec.yml and run dart pub get or flutter pub get.

pubspec.yml
dependencies:
configcat_client: ^4.0.0

2. Import the ConfigCat SDK

import 'package:configcat_client/configcat_client.dart';

3. Create the ConfigCat client with your SDK Key

final client = ConfigCatClient.get(sdkKey: '#YOUR-SDK-KEY#');

4. (Optional) Set up Flutter caching

If you're using the SDK in a Flutter application, it's recommended to use the Flutter Preferences Cache implementation for caching. It stores the downloaded config JSON using the shared_preferences package.

import 'package:configcat_preferences_cache/configcat_preferences_cache.dart';
final client = ConfigCatClient.get(
sdkKey: '#YOUR-SDK-KEY#',
options: ConfigCatOptions(cache: ConfigCatPreferencesCache()));

5. Get your setting value

final isMyAwesomeFeatureEnabled = await client.getValue(key: 'isMyAwesomeFeatureEnabled', defaultValue: false);
if(isMyAwesomeFeatureEnabled) {
doTheNewThing();
} else {
doTheOldThing();
}

6. Close ConfigCat client​

You can safely shut down all clients at once or individually and release all associated resources on application exit.

ConfigCatClient.closeAll(); // closes all clients

client.close(); // closes the specific client

Setting up the ConfigCat Client

ConfigCat Client is responsible for:

  • managing the communication between your application and ConfigCat servers.
  • caching your setting values and feature flags.
  • serving values quickly in a failsafe way.

ConfigCatClient.get(sdkKey: <sdkKey>) returns a client with default options.

Customizing the ConfigCat Client

To customize the SDK's behavior, you can pass an additional ConfigCatOptions parameter to the get() static factory method where the ConfigCatOptions class is used to set up the ConfigCat Client.

final client = ConfigCatClient.get(
sdkKey: '#YOUR-SDK-KEY#',
options: ConfigCatOptions(
pollingMode: PollingMode.manualPoll(),
logger: ConfigCatLogger(level: LogLevel.info)
)
);

These are the available options on the ConfigCatOptions class:

PropertiesDescription
dataGovernanceOptional, defaults to global. Describes the location of your feature flag and setting data within the ConfigCat CDN. This parameter needs to be in sync with your Data Governance preferences. More about Data Governance. Available options: global, euOnly.
baseUrlOptional, sets the CDN base url (forward proxy, dedicated subscription) from where the sdk will download the config JSON.
connectTimeoutOptional, sets the underlying Dio HTTP client's connect timeout. More about the HTTP Client.
receiveTimeoutOptional, sets the underlying Dio HTTP client's receive timeout. More about the HTTP Client.
sendTimeoutOptional, sets the underlying Dio HTTP client's send timeout. More about the HTTP Client.
cacheOptional, sets a custom cache implementation for the client. More about cache.
pollingModeOptional, sets the polling mode for the client. More about polling modes.
loggerOptional, sets the internal logger and log level. More about logging.
overrideOptional, sets local feature flag & setting overrides. More about feature flag overrides.
defaultUserOptional, sets the default user. More about default user.
offlineOptional, defaults to false. Indicates whether the SDK should be initialized in offline mode. More about offline mode.
hooksOptional, used to subscribe events that the SDK sends in specific scenarios. More about hooks.
caution

We strongly recommend you to use the ConfigCatClient as a Singleton object in your application. The ConfigCatClient.get(sdkKey: <sdkKey>) static factory method constructs singleton client instances for your SDK keys. These clients can be closed all at once with the ConfigCatClient.closeAll() method or individually with client.close().

Anatomy of getValue()

ParametersDescription
keyREQUIRED. The key of a specific setting or feature flag. Set on ConfigCat Dashboard for each setting.
defaultValueREQUIRED. This value will be returned in case of an error.
userOptional, User Object. Essential when using Targeting. Read more about Targeting.
final value = await client.getValue(
key: 'keyOfMySetting',
defaultValue: false,
user: ConfigCatUser(identifier: '#USER-IDENTIFIER#'), // Optional User Object
);
caution

It is important to provide an argument for the defaultValue parameter, specifically for the T generic type parameter, that matches the type of the feature flag or setting you are evaluating. Please refer to the following table for the corresponding types.

Setting type mapping

Setting KindType parameter T
On/Off Togglebool/bool?
TextString/String?
Whole Numberint/int?
Decimal Numberdouble/double?

In addition to the types mentioned above, you also have the option to provide object, object? or dynamic for the type parameter regardless of the setting kind.

It's important to note that providing any other type for the type parameter will result in an ArgumentError.

If you specify an allowed type but it mismatches the setting kind, an error message will be logged and defaultValue will be returned.

When relying on type inference and not explicitly specifying the type parameter, be mindful of potential type mismatch issues, especially with number types. For example, client.getValue(key: "keyOfMyDecimalSetting", defaultValue: 0) will return defaultValue (0) instead of the actual value of the decimal setting because the compiler infers the type as int instead of double, that is, the call is equivalent to client.getValue<int>("keyOfMyDecimalSetting", 0), which is a type mismatch.

To correctly evaluate a decimal setting, you should use:

var value = client.getValue("keyOfMyDecimalSetting", 0.0);
// -or-
var value = client.getValue<double>("keyOfMyDecimalSetting", 0);

Anatomy of getValueDetails()

getValueDetails() is similar to getValue() but instead of returning the evaluated value only, it gives more detailed information about the evaluation result.

ParametersDescription
keyREQUIRED. The key of a specific setting or feature flag. Set on ConfigCat Dashboard for each setting.
defaultValueREQUIRED. This value will be returned in case of an error.
userOptional, User Object. Essential when using Targeting. Read more about Targeting.
final details = await client.getValueDetails(
key: 'keyOfMySetting',
defaultValue: false,
user: ConfigCatUser(identifier: '#USER-IDENTIFIER#'), // Optional User Object
);
caution

It is important to provide an argument for the defaultValue parameter, specifically for the T generic type parameter, that matches the type of the feature flag or setting you are evaluating. Please refer to this table for the corresponding types.

The details result contains the following information:

FieldTypeDescription
valuebool / String / int / doubleThe evaluated value of the feature flag or setting.
keyStringThe key of the evaluated feature flag or setting.
isDefaultValueboolTrue when the default value passed to getValueDetails() is returned due to an error.
errorString?In case of an error, this property contains the error message.
userConfigCatUser?The User Object that was used for evaluation.
matchedPercentageOptionPercentageOption?The Percentage Option (if any) that was used to select the evaluated value.
matchedTargetingRuleTargetingRule?The Targeting Rule (if any) that matched during the evaluation and was used to return the evaluated value.
fetchTimeDateTimeThe last download time of the current config.

User Object

The User Object is essential if you'd like to use ConfigCat's Targeting feature.

final user = ConfigCatUser(identifier: '#UNIQUE-USER-IDENTIFIER#');
final user = ConfigCatUser(identifier: '[email protected]');

Customized User Object creation

ArgumentDescription
identifierREQUIRED. Unique identifier of a user in your application. Can be any value, even an email address.
emailOptional parameter for easier Targeting Rule definitions.
countryOptional parameter for easier Targeting Rule definitions.
customOptional dictionary for custom attributes of a user for advanced Targeting Rule definitions. e.g. User role, Subscription type.
final user = ConfigCatUser(
identifier: '#UNIQUE-USER-IDENTIFIER#',
email: '[email protected]',
country: 'United Kingdom',
custom: {
'SubscriptionType': 'Pro',
'UserRole': 'Admin'
}
);

The custom map also allows attribute values other than String values:

final user = ConfigCatUser(
identifier: '#UNIQUE-USER-IDENTIFIER#',
email: '[email protected]',
country: 'United Kingdom',
custom: {
'Rating': 4.5,
'RegisteredAt': DateTime.parse('2023-11-22 12:34:56 +00:00'),
'Roles': {"Role1", "Role2"}
}
);

User Object Attribute Types

All comparators support String values as User Object attribute (in some cases they need to be provided in a specific format though, see below), but some of them also support other types of values. It depends on the comparator how the values will be handled. The following rules apply:

Text-based comparators (EQUALS, IS ONE OF, etc.)

  • accept String values,
  • all other values are automatically converted to String (a warning will be logged but evaluation will continue as normal).

SemVer-based comparators (IS ONE OF, <, >=, etc.)

  • accept String values containing a properly formatted, valid semver value,
  • all other values are considered invalid (a warning will be logged and the currently evaluated Targeting Rule will be skipped).

Number-based comparators (=, <, >=, etc.)

  • accept double values and all other numeric values which can safely be converted to double,
  • accept String values containing a properly formatted, valid double value,
  • all other values are considered invalid (a warning will be logged and the currently evaluated Targeting Rule will be skipped).

Date time-based comparators (BEFORE / AFTER)

  • accept DateTime values, which are automatically converted to a second-based Unix timestamp,
  • accept double values representing a second-based Unix timestamp and all other numeric values which can safely be converted to Double,
  • accept String values containing a properly formatted, valid double value,
  • all other values are considered invalid (a warning will be logged and the currently evaluated Targeting Rule will be skipped).

String array-based comparators (ARRAY CONTAINS ANY OF / ARRAY NOT CONTAINS ANY OF)

  • accept lists or sets of String,
  • accept String values containing a valid JSON string which can be deserialized to an array of String,
  • all other values are considered invalid (a warning will be logged and the currently evaluated Targeting Rule will be skipped).

Default user

There's an option to set a default User Object that will be used at feature flag and setting evaluation. It can be useful when your application has a single user only, or rarely switches users.

You can set the default User Object either on SDK initialization:

final client = ConfigCatClient.get(
sdkKey: '#YOUR-SDK-KEY#',
options: ConfigCatOptions(
defaultUser: ConfigCatUser(identifier: '[email protected]')
)
);

or with the setDefaultUser() method of the ConfigCat client.

client.setDefaultUser(ConfigCatUser(identifier: '[email protected]'));

Whenever the getValue(), getValueDetails(), getAllValues(), or getAllVariationIds() methods are called without an explicit user parameter, the SDK will automatically use the default user as a User Object.

final user = ConfigCatUser(identifier: '[email protected]');
client.setDefaultUser(user);

// The default user will be used at the evaluation process.
final value = await client.getValue(key: 'keyOfMySetting', defaultValue: false);

When the user parameter is specified on the requesting method, it takes precedence over the default user.

final user = ConfigCatUser(identifier: '[email protected]');
client.setDefaultUser(user);

final otherUser = ConfigCatUser(identifier: '[email protected]');

// otherUser will be used at the evaluation process.
final value = await client.getValue(key: 'keyOfMySetting', defaultValue: false, user: otherUser);

For deleting the default user, you can do the following:

client.clearDefaultUser();

Polling Modes

The ConfigCat SDK supports 3 different polling mechanisms to acquire the setting values from ConfigCat. After latest setting values are downloaded, they are stored in the internal cache then all getValue() calls are served from there. With the following polling modes, you can customize the SDK to best fit to your application's lifecycle.
More about polling modes.

Auto polling (default)

The ConfigCat SDK downloads the latest values and stores them automatically every 60 seconds.

Use the the autoPollInterval option parameter of the PollingMode.autoPoll() to change the polling interval.

final client = ConfigCatClient.get(
sdkKey: '<PLACE-YOUR-SDK-KEY-HERE>',
options: ConfigCatOptions(
pollingMode: PollingMode.autoPoll(
autoPollInterval: Duration(seconds: 100),
),
)
);

Available options:

Option ParameterDescriptionDefault
autoPollIntervalPolling interval.60
maxInitWaitTimeMaximum waiting time between the client initialization and the first config acquisition in seconds.5

Lazy Loading

When calling getValue() the ConfigCat SDK downloads the latest setting values if they are not present or expired in the cache. In this case the getValue() will return the setting value after the cache is updated.

Use the cacheRefreshInterval option parameter of the PollingMode.lazyLoad() to set cache lifetime.

final client = ConfigCatClient.get(
sdkKey: '<PLACE-YOUR-SDK-KEY-HERE>',
options: ConfigCatOptions(
pollingMode: PollingMode.lazyLoad(
// the cache will expire in 100 seconds
cacheRefreshInterval: Duration(seconds: 100),
),
)
);

Available options:

ParameterDescriptionDefault
cacheRefreshIntervalCache TTL.60

Manual Polling

Manual polling gives you full control over when the config JSON (with the setting values) is downloaded. ConfigCat SDK will not update them automatically. Calling forceRefresh() is your application's responsibility.

final client = ConfigCatClient.get(
sdkKey: '<PLACE-YOUR-SDK-KEY-HERE>',
options: ConfigCatOptions(
pollingMode: PollingMode.manualPoll(),
)
);

client.forceRefresh();

getValue() returns defaultValue if the cache is empty. Call forceRefresh() to update the cache.

Hooks

With the following hooks you can subscribe to particular events fired by the SDK:

  • onClientReady(): This event is sent when the SDK reaches the ready state. If the SDK is initialized with lazy load or manual polling, it's considered ready right after instantiation. If it's using auto polling, the ready state is reached when the SDK has a valid config JSON loaded into memory either from cache or from HTTP. If the config couldn't be loaded neither from cache nor from HTTP the onClientReady event fires when the auto polling's maxInitWaitTime is reached.

  • onConfigChanged(Map<string, Setting>): This event is sent when the SDK loads a valid config JSON into memory from cache, and each subsequent time when the loaded config JSON changes via HTTP.

  • onFlagEvaluated(EvaluationDetails): This event is sent each time when the SDK evaluates a feature flag or setting. The event sends the same evaluation details that you would get from getValueDetails().

  • onError(String): This event is sent when an error occurs within the ConfigCat SDK.

You can subscribe to these events either on SDK initialization:

final client = ConfigCatClient.get(
sdkKey: '#YOUR-SDK-KEY#',
options: ConfigCatOptions(
pollingMode: PollingMode.manualPoll(),
hooks: Hooks(
onFlagEvaluated: (details) => /* handle the event */
)
)
);

or with the hooks property of the ConfigCat client:

client.hooks.addOnFlagEvaluated((details) => /* handle the event */);

Online / Offline mode

In cases when you'd want to prevent the SDK from making HTTP calls, you can put it in offline mode:

client.setOffline();

In offline mode, the SDK won't initiate HTTP requests and will work only from its cache.

To put the SDK back in online mode, you can do the following:

client.setOnline();

With client.isOffline() you can check whether the SDK is in offline mode.

Flag Overrides

With flag overrides you can overwrite the feature flags & settings downloaded from the ConfigCat CDN with local values. Moreover, you can specify how the overrides should apply over the downloaded values. The following 3 behaviours are supported:

  • Local only (OverrideBehaviour.localOnly): When evaluating values, the SDK will not use feature flags & settings from the ConfigCat CDN, but it will use all feature flags & settings that are loaded from local-override sources.

  • Local over remote (OverrideBehaviour.localOverRemote): When evaluating values, the SDK will use all feature flags & settings that are downloaded from the ConfigCat CDN, plus all feature flags & settings that are loaded from local-override sources. If a feature flag or a setting is defined both in the downloaded and the local-override source then the local-override version will take precedence.

  • Remote over local (OverrideBehaviour.remoteOverLocal): When evaluating values, the SDK will use all feature flags & settings that are downloaded from the ConfigCat CDN, plus all feature flags & settings that are loaded from local-override sources. If a feature flag or a setting is defined both in the downloaded and the local-override source then the downloaded version will take precedence.

You can set up the SDK to load your feature flag & setting overrides from a Map<String, Object>.

final client = ConfigCatClient.get(
sdkKey: 'localhost',
options: ConfigCatOptions(
override: FlagOverrides(
dataSource: OverrideDataSource.map({
'enabledFeature': true,
'disabledFeature': false,
'intSetting': 5,
'doubleSetting': 3.14,
'stringSetting': 'test',
}),
behaviour: OverrideBehaviour.localOnly
)
)
);

getAllKeys()

You can query the keys of each feature flag and setting with the getAllKeys() method.

final client = ConfigCatClient.get(sdkKey: '#YOUR-SDK-KEY#');
final keys = await client.getAllKeys();

getAllValues()

Evaluates and returns the values of all feature flags and settings. Passing a User Object is optional.

final client = ConfigCatClient.get(sdkKey: '#YOUR-SDK-KEY#');
final settingValues = await client.getAllValues();

// invoke with User Object
final user = ConfigCatUser(identifier: '#UNIQUE-USER-IDENTIFIER#');
final settingValuesTargeting = await client.getAllValues(user);

Cache

The SDK caches the downloaded config JSON only in memory by default. In case you have a Flutter application, you can use the Flutter Preferences Cache for caching.
It's based on the shared_preferences package that uses the following storage locations by platform:

  • Web: Browser LocalStorage.
  • iOS / macOS: NSUserDefaults.
  • Android: SharedPreferences.
  • Linux: File in XDG_DATA_HOME directory.
  • Windows: File in roaming AppData directory.
final client = ConfigCatClient.get(
sdkKey: '#YOUR-SDK-KEY#',
options: ConfigCatOptions(cache: ConfigCatPreferencesCache()));

Custom Cache

You have the option to inject your custom cache implementation into the client. All you have to do is to inherit from the ConfigCatCache abstract class:

class MyCustomCache extends ConfigCatCache {

Future<String> read(String key) {
// here you have to return with the cached value
}


Future<void> write(String key, String value) {
// here you have to store the new value in the cache
}
}

Then use your custom cache implementation:

final client = ConfigCatClient.get(
sdkKey: '<PLACE-YOUR-SDK-KEY-HERE>',
options: ConfigCatOptions(cache: MyCustomCache()));
info

The Dart (Flutter) SDK supports shared caching. You can read more about this feature and the required minimum SDK versions here.

HttpClient

The ConfigCat SDK internally uses a Dio HTTP client instance to download the latest config JSON over HTTP. You have the option to customize the internal HTTP client.

HTTP Timeout

You can set the maximum wait time for a ConfigCat HTTP response by using Dio's timeouts.

final client = ConfigCatClient.get(
sdkKey: '<PLACE-YOUR-SDK-KEY-HERE>',
options: ConfigCatOptions(
connectTimeout: Duration(seconds: 10), // timeout for establishing a HTTP connection with the server
sendTimeout: Duration(seconds: 10), // timeout for sending a HTTP request to the server
receiveTimeout: Duration(seconds: 10), // timeout for reading the server's HTTP response
)
);

Default timeout values:

  • connectTimeout: 10 seconds
  • sendTimeout: 20 seconds
  • receiveTimeout: 20 seconds

HTTP Proxy

If your application runs behind a proxy you can do the following:

import 'package:dio/adapter.dart';

(client.httpClient.httpClientAdapter as DefaultHttpClientAdapter)
.onHttpClientCreate = (client) {
client.findProxy = (uri) {
return 'PROXY proxyHost:proxyPort';
};
};

Force refresh

Call the forceRefresh() method on the client to download the latest config JSON and update the cache.

Logging

The default logger used by the SDK simply outputs the log messages with print(), but you can override it with your implementation via the logger client option. The custom implementation must satisfy the Logger abstract class.

final client = ConfigCatClient.get(
sdkKey: '<PLACE-YOUR-SDK-KEY-HERE>',
options: ConfigCatOptions(
logger: ConfigCatLogger(internalLogger: MyCustomLogger()),
)
);

You can change the verbosity of the logs by passing a LogLevel parameter to the logger option.

final client = ConfigCatClient.get(
sdkKey: '<PLACE-YOUR-SDK-KEY-HERE>',
options: ConfigCatOptions(
logger: ConfigCatLogger(level: LogLevel.info),
)
);

Available log levels:

LevelDescription
nothingTurn the logging off.
errorOnly error level events are logged.
warningDefault. Errors and Warnings are logged.
infoErrors, Warnings and feature flag evaluation is logged.
debugAll of the above plus debug info is logged. Debug logs can be different for other SDKs.

Info level logging helps to inspect how a feature flag was evaluated:

[INFO] 2022-01-20T18:22:02.313703 ConfigCat - [5000] Evaluating 'isPOCFeatureEnabled' for User '{"Identifier":"<SOME USERID>","Email":"[email protected]","Country":"US","SubscriptionType":"Pro","Role":"Admin","version":"1.0.0"}'
Evaluating targeting rules and applying the first match if any:
- IF User.Email CONTAINS ANY OF ['@something.com'] THEN 'False' => no match
- IF User.Email CONTAINS ANY OF ['@example.com'] THEN 'True' => MATCH, applying rule
Returning 'True'.

Sample Apps

Check out our Sample Applications how they use the ConfigCat SDK

Guides

See this guide on how to use ConfigCat's Dart SDK.

Look Under the Hood