isDeviceUseVPN method
Checks if the device is currently using a VPN. Returns a bool indicating whether the device is using a VPN.
Implementation
@override
Future<bool?> isDeviceUseVPN() async {
final version = await methodChannel.invokeMethod('isDeviceUseVPN');
return version;
}