pingServer method
Executes an active TCP/TLS ping test against host:port.
Implementation
Future<VpnPingResult> pingServer({
required String host,
required int port,
Duration timeout = const Duration(seconds: 3),
bool useTls = false,
String? tlsServerName,
bool allowInsecure = false,
}) {
throw UnimplementedError('pingServer() has not been implemented.');
}