HomeGuidesAPI Reference
Submit Documentation FeedbackJoin Developer CommunityOptimizely GitHubOptimizely NuGetLog In


Use the `initializeClient` method to initialize the Flutter SDK and instantiate an instance of the Optimizely Feature Experimentation SDK class, which exposes API methods like the [CreateUserContext method](🔗). Each client corresponds to the datafile representing the state of a project for a certain environment. The datafile is accessible via OptimizelyConfig.

## Version

1.0.0-beta or higher

## Description

The constructor accepts a configuration object to configure Optimizely Feature Experimentation.

Some parameters are optional because the SDK provides a default implementation, but you may want to override these for your production environments. For example, you may want to set up event options to manage network calls and datafile handler parameters to set up the datafile download path or interval.

## Parameters

The table below lists the required and optional parameters for the `start` method:

ParameterTypeDescription
**sdkKey** _required_StringEach environment has its own SDK key.
**eventOptions** _optional_EventOptionsAllows user to set `batchSize`, `timeInterval` and `maxQueueSize` of event processor. If a user does not set these values, the system uses the defaults of batchSize (10), timeInterval (60) and maxQueueSize (10000).
**datafilePeriodicDownloadInterval** _optional_intSets the interval (in seconds) during which DatafileHandler will attempt to update the cached datafile periodically. The minimum interval is 15 minutes (enforced by the Android JobScheduler API). If you are running iOS only, there is no minimum interval.
**datafileHostOptions** _optional_Map\<ClientPlatform, DatafileHostOptions>Adds support to provide custom datafileHost URL for different platforms. ClientPlatform is enum with two platform options `iOS` and `android`. DatafileHostOptions allows user to set `datafileHostPrefix` and `datafileHostSuffix`. For each platform, the datafileHostSuffix format is a little different. For example, Suffix for iOS should look like: `/datafiles/%@.json` (`%@` will automatically be substituted with the sdkKey). Suffix for Android should look like: `/datafiles/%s.json` (`%s ` will automatically be substituted with the sdkKey).

## Returns

Instantiates an instance of the Optimizely Feature Experimentation class.

## Examples

In the Flutter SDK, you do not need to manage the datafile directly. The SDK includes a datafile manager that provides support for datafile polling to automatically update the datafile on a regular interval while the application is in the foreground.

To use it:

  1. Create a `OptimizelyFlutterSdk` by supplying your **SDK Key** and optional configuration settings. You can find the SDK key in the **Settings** > **Environments** tab of a Full Stack project.

  2. To start the client [synchronously](🔗) and use the `initializeClient` method to instantiate a client:





## Use initialization

To instantiate the Optimizely client: **synchronous**. This method pings the Optimizely Feature Experimentation servers for a new datafile during initialization.

### Initialization

During initialization, your app requests the newest datafile from the CDN servers. Requesting the newest datafile ensures that your app always uses the most current project settings. It also means your app cannot instantiate a client until it downloads a new datafile, discovers the datafile has not changed or the request times out.

Initializing a client synchronously causes the manager to first attempt to download the newest datafile. This network activity is what causes an initialization to take longer to complete.

If the network request returns an error, like when network connectivity is unreliable or if the manager discovers that the cached datafile is identical to the newest datafile, the Optimizely Feature Experimentation manager searches for a [cached datafile](🔗). If one is available, the manager uses it to complete the client initialization, otherwise initialization fails. If the manager discovers there is an updated datafile that differs from the cached datafile, the manager downloads the new datafile and uses it to initialize the client.

1013




To initialize an `OptimizelyClient` object, call `flutterSDK.initializeClient()`.

## Configure datafile polling

After the manager attempts to pull the newest datafile from the CDN servers, the Optimizely manager periodically checks for and pulls a new datafile at the time interval you set during its initialization. The process of checking for and downloading a new datafile is called _datafile polling_.

By default, datafile polling is enabled. You can set a non-zero interval value for increasing or decreasing the time period of polling interval. This value is the number of seconds the manager waits between datafile polling attempts.





### Usage notes

  • The minimum polling interval is 15 minutes while the app is open. If you specify shorter polling intervals than the minimum, the SDK automatically resets the intervals to 15 minutes.

  • The Optimizely manager only checks for new datafiles when the SDK is active and the app is running on iOS/tvOS/Android.

  • **The flutter SDK automatically updates when it detects a new datafile to ensure you are always working with the latest datafile**. If you want to receive a notification when the project updates, register for a datafile change via the datafile change notification listener. You can also register for datafile change notifications via the [UpdateConfigNotification](🔗)





## More sample code





## Source files

The language/platform source files containing the implementation for Flutter are on GitHub in the [optimizely_flutter_sdk.dart](🔗) file.