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