startBlockerVpn function
π INICIAR VPN - MΓ©todo direto para VPN
Implementation
Future<bool> startBlockerVpn() async {
print('π [VPN] Iniciando VPN...');
try {
await StopouBlocker.start();
print('π [VPN] β
VPN iniciada com sucesso');
return true;
} catch (e) {
print('π [VPN] β Erro ao iniciar VPN: $e');
return false;
}
}