varioqub_configs 0.7.1 copy "varioqub_configs: ^0.7.1" to clipboard
varioqub_configs: ^0.7.1 copied to clipboard

Flutter plugin providing work with remote configs, experiments and A/B testing via Varioqub

Varioqub Configs #

Flutter plugin providing work with remote configs, experiments and A/B testing via Varioqub. #

Example of using #

/// Initializing configs instance
final configs = VarioqubConfigs();
await configs.build(
    const BuildSettings(client: VarioqubClient.appmetrica('XXXXXXX')), // Your AppMetrica application ID
);

/// Activation of previous configs.
/// It is recommended to activate the configuration during application startup.
await configs.activateConfig();

/// Extracting configs from Varioqub.
/// It is recommended to fetch the configuration during the application without waiting.
await configs.fetchConfig();

/// Getting the config by "FLAG" key.
await configs.getString(
    key: 'FLAG',
    defaultValue: 'DEFAULT_VALUE',
);

Sources #

What is Varioqub? (The main website of the Varioqub project)

Official docs from Yandex

Changelog #

Refer to the Changelog to get all release notes.

Maintainers #

Igor Molchanov

This library is open for issues and pull requests. If you have ideas for improvements or bugs, the repository is open to contributions!

License #

MIT

5
likes
160
pub points
63%
popularity

Publisher

verified publishermolchanovia.dev

Flutter plugin providing work with remote configs, experiments and A/B testing via Varioqub

Repository (GitHub)
View/report issues

Topics

#varioqub #configs #experiments

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on varioqub_configs