slowlogGet method
slowlogGet
Implementation
Future<SlowlogGet> slowlogGet({int? count}) async {
Object result = await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!).slowlogGet(count));
});
return SlowlogGet.fromResult(result);
}