connectReadyServer method
Connects a server that has already announced itself, if any.
Implementation
@override
Future<PrivServerInfo?> connectReadyServer() async {
final map = await _mapOrNull('connectReadyServer');
return map == null ? null : PrivServerInfo.fromMap(map);
}