ping method
The ping command returns an acknowledgement, so that clients can test the connection status and latency.
Implementation
Future<Map<String, dynamic>> ping() async {
final response = await makeCustomCall<Map<String, dynamic>>("ping");
return response;
}