getState method
Reads current connection state.
Implementation
@override
/// Reads current connection state.
Future<VpnConnectionState> getState() async {
final String? state = await methodChannel.invokeMethod<String>('getState');
return vpnConnectionStateFromWire(state);
}