lrem method

Future<int> lrem(
  1. String key,
  2. int count,
  3. Object value
)

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;
  });
}