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