rpushx method

Future<RespType> rpushx(
  1. String key,
  2. List<Object> values
)

Implementation

Future<RespType> rpushx(String key, List<Object> values) async {
  return tier0.execute([
    'RPUSHX',
    key,
    ...values,
  ]);
}