feature_flag_audit 1.3.0 copy "feature_flag_audit: ^1.3.0" to clipboard
feature_flag_audit: ^1.3.0 copied to clipboard

CLI tool to audit feature flags and Firebase Remote Config usage in Flutter apps.

example/lib/main.dart

import 'mock_remote_config.dart';
import 'services/experiment_service.dart';
import 'services/feature_flag_service.dart';

void main() {
  final config = MockRemoteConfig();

  final flags = FeatureFlagService(config);
  flags.readCheckoutRevampFlag();
  flags.readHomeBannerText();
  flags.readPromoLimit();
  flags.readProductTileAspectRatio();
  flags.readDarkModeFlag();
  flags.readOnboardingVariant();

  final experiments = ExperimentService(config);
  experiments.readOnboardingVariant();
  experiments.readNewPdpExperiment();
  experiments.readPromoV1();
}
2
likes
160
points
417
downloads

Documentation

API reference

Publisher

verified publisherjneela.dev

Weekly Downloads

CLI tool to audit feature flags and Firebase Remote Config usage in Flutter apps.

Repository (GitHub)
View/report issues

Topics

#flutter #feature-flags #firebase-remote-config #cli #static-analysis

License

MIT (license)

Dependencies

args, googleapis_auth, http, path, yaml

More

Packages that depend on feature_flag_audit