unleash 0.0.4 copy "unleash: ^0.0.4" to clipboard
unleash: ^0.0.4 copied to clipboard

outdated

A dart client for Unleash. Unleash is a simple and easy to use feature toggle (feature flag) service.

example/example.dart

import 'package:unleash/unleash.dart';

Future<void> main() async {
  final unleash = await Unleash.init(
    UnleashSettings(
      appName: '<appname>',
      instanceId: '<instanceid>',
      unleashApi: Uri.parse('<api_url>'),
    ),
  );
  print(unleash.isEnabled('Awesome Feature'));
}
21
likes
0
pub points
81%
popularity

Publisher

verified publishergetunleash.io

A dart client for Unleash. Unleash is a simple and easy to use feature toggle (feature flag) service.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

http, meta, path, yaml

More

Packages that depend on unleash