rpush method

Future<int> rpush(
  1. String key,
  2. List<Object> values
)

rpush

Implementation

Future<int> rpush(String key, List<Object> values) async {
  return await _runWithRetryNew(() async {
    return (await RespCommandsTier1(_client!).rpush(key, values))
        .toInteger()
        .payload;
  });
}