ping static method

Future<void> ping()

Pings the server.

Completes with no error if the server is alive and ready.

Implementation

static Future<void> ping() async {
  await _client.ping(MercuryRequest());
}