codecov

package build pub likes popularity pub points
openfeature build pub package likes popularity pub points

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

This is pretty much experimental and under development as a hobby project.

import 'package:openfeature/openfeature.dart';

final api = OpenFeatureAPI();
// set your own provider
api.provider = EnvVarProvider();
final client = api.getClient('myClient');
final result = await client.getBooleanValue('myBoolFlag', false);

For complete documentation, visit: https://docs.openfeature.dev/docs/category/concepts

Libraries

openfeature