getBoolVariation method

Future<Result<bool>> getBoolVariation(
  1. String featureId, {
  2. bool defaultValue = false,
})

Implementation

Future<Result<bool>> getBoolVariation(
  String featureId, {
  bool defaultValue = false,
}) async {
  return _resultGuard<bool>(
      await _invokeMethod('getBoolVariation', argument: {
    'featureId': featureId,
    'defaultValue': defaultValue,
  }));
}