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

outdated

A dart client for unleash

example/example.dart

import 'package:unleash/unleashdart.dart';

Future<void> main() async {
  await Unleash.init(
    UnleashSettings(
      appName: '<appname>',
      instanceId: '<instanceid>',
      unleashApi: Uri.parse('<api_url>'),
    ),
  );
  print(Unleash.isEnabled('Awesome Feature'));
}