hackle 2.12.3 copy "hackle: ^2.12.3" to clipboard
hackle: ^2.12.3 copied to clipboard

Hackle Flutter SDK

Hackle #

Hackle Flutter SDK

Usage #

Initialize #

await HackleApp.initialize(YOUT_APP_SDK_KEY);
copied to clipboard

Decide the A/B test variation #

Variation variation = await HackleApp.variation(42);

if (variation == Variation.A) {
  featureA();
} else {
  featureB();
}
copied to clipboard

Decide the Feature #

bool featureOn = await HackleApp.isFeatureOn(42);

if (featureOn) {
  onSomethingFeature();
} else {
  offSomethingFeature();
}
copied to clipboard

Tracks the event #

HackleApp.track(HackleEvent.builder("purchase").build());
copied to clipboard
1
likes
0
points
855
downloads

Publisher

unverified uploader

Weekly Downloads

2024.09.19 - 2025.04.03

Hackle Flutter SDK

Homepage

License

unknown (license)

Dependencies

flutter, hackle_android, hackle_ios, hackle_platform_interface

More

Packages that depend on hackle