unleash 0.0.2
unleash: ^0.0.2 copied to clipboard
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'));
}