openfeature 0.0.1 copy "openfeature: ^0.0.1" to clipboard
openfeature: ^0.0.1 copied to clipboard

This is the Dart implementation of OpenFeature, a vendor-agnostic abstraction library for evaluating feature flags.

example/main.dart

import 'package:openfeature/openfeature.dart';

Future<void> main(List<String> arguments) async {
  final api = OpenFeatureAPI();
  // set your own provider
  api.provider = EnvVarProvider();
  final client = api.getClient('myClient');
  await client.getBooleanValue('myBoolFlag', false);
}
4
likes
150
pub points
18%
popularity

Publisher

unverified uploader

This is the Dart implementation of OpenFeature, a vendor-agnostic abstraction library for evaluating feature flags.

Homepage
Repository (GitHub)
View/report issues

Documentation

Documentation
API reference

License

MIT (license)

Dependencies

meta

More

Packages that depend on openfeature