getBooleanFlag abstract method

Future<bool> getBooleanFlag(
  1. String flagKey, {
  2. bool defaultValue = false,
  3. Map<String, dynamic>? context,
})

Fetches the value of a feature flag as a boolean.

Implementation

Future<bool> getBooleanFlag(
  String flagKey, {
  bool defaultValue = false,
  Map<String, dynamic>? context,
});