disconnect method
Disconnect current connection
Implementation
@override
Future<void> disconnect() async {
if (!isSupported) {
throw UnsupportedError('V2Ray is not supported on this platform');
}
try {
await _androidEngine.disconnect();
} catch (e) {
print('V2Ray disconnect error: $e');
}
}