stopAllBlockers function

Future<bool> stopAllBlockers()

🛑 PARAR TUDO - Para VPN e Keywords

Implementation

Future<bool> stopAllBlockers() async {
  print('🛑 [STOP] Parando todos os serviços...');
  try {
    await StopouBlocker.stop();
    print('🛑 [STOP] ✅ Todos os serviços parados');
    return true;
  } catch (e) {
    print('🛑 [STOP] ❌ Erro ao parar serviços: $e');
    return false;
  }
}