incr method

  1. @override
Future<int?> incr(
  1. String key,
  2. int value, {
  3. Context? ctx,
})
override

Incr the cache of expire time.

Implementation

@override
Future<int?> incr(String key, int value, {Context? ctx}) async {
  return await _h.invoke(this, _methods['incr']!, [key, value], ctx);
}