incrby method

Future<int> incrby(
  1. String key,
  2. int increment
)

incrby

Implementation

Future<int> incrby(String key, int increment) async {
  Object result = await _runWithRetryNew(() async {
    return (await RespCommandsTier1(_client!).incrby(key, increment));
  });

  if (result is RespType2<dynamic>) {
    return result.toInteger().payload;
  }

  return (result as RespType3<dynamic>).toInteger().payload;
}