boolVariation method

Future<bool> boolVariation(
  1. String featureId, {
  2. required bool defaultValue,
})

Implementation

Future<bool> boolVariation(
  String featureId, {
  required bool defaultValue,
}) async {
  return boolVariationDetails(featureId, defaultValue: defaultValue)
      .then((value) => value.variationValue);
}