clientList method

Future<ClientList> clientList()

------------------------------ server ------------------------------ clientList

Implementation

/// clientList
Future<ClientList> clientList() async {
  Object result = await _runWithRetryNew(() async {
    return (await RespCommandsTier1(_client!).clientList());
  });

  return ClientList.fromResult(result);
}