detectBraveShields property Null safety
Standalone check to detect if brave browser shields seems to be activated
Implementation
Future<bool> get detectBraveShields {
final isBrave = _helper.isBraveBrowser();
if (isBrave) {
return _helper.doesBaitRequestIsBlockedByBrave();
}
return Future.value(false);
}