stopBlockerKeywords function

Future<bool> stopBlockerKeywords()

🔍 PARAR KEYWORDS - Método direto para parar detecção

Implementation

Future<bool> stopBlockerKeywords() async {
  print('🔍 [KEYWORDS] Parando detecção de keywords...');
  try {
    await StopouBlocker.stopKeywordBlocker();
    print('🔍 [KEYWORDS] ✅ Keywords paradas com sucesso');
    return true;
  } catch (e) {
    print('🔍 [KEYWORDS] ❌ Erro ao parar keywords: $e');
    return false;
  }
}