lrem method
lrem
Implementation
Future<int> lrem(String key, int count, Object value) async {
return await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!).lrem(key, count, value))
.toInteger()
.payload;
});
}