detectBraveShields property

Future<bool> detectBraveShields

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);
}