Optimizely will be sunsetting Full Stack Experimentation on July 29, 2024. See the recommended Feature Experimentation migration timeline and documentation.

Dev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySumbit a ticketLog In
GitHubNuGetDev CommunitySumbit a ticket

Pass in audience attributes

Possible user attribute values you can send to Optimizely through the Optimizely Flutter SDK.

You can pass strings, numbers, Booleans, and null as user attribute values. If you want to target audiences based on the version of your application that they are using, you can also pass in a string formatted as a semantic version, then define a version audience condition in the Optimizely app. The examples below show how to pass in attributes.

Map<String, dynamic> attributes = {};
attributes["device"] = "iPhone";
attributes["lifetime"] = 24738388;
attributes["is_logged_in"] = true;
attributes["application_version"] = "4.3.0-beta";

var variation = await flutterSDK?.activate("new_feature", "user123", attributes);

🚧

Important

During audience evaluation, if you do not pass a valid attribute value for a given audience condition—for example, if you pass a > string when the audience condition requires a Boolean, or if you simply forget to pass a value—then that condition will be skipped. The SDK logs will include warnings when this occurs.