incr method

Future<int> incr(
  1. String key
)

incr

Implementation

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

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

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