decr method

  1. @MPI(name: "mesh.cache.decr")
Future<int?> decr(
  1. String key,
  2. int value, {
  3. Context? ctx,
})

Decr the cache of expire time.

Implementation

@MPI(name: "mesh.cache.decr")
Future<int?> decr(String key, int value, {Context? ctx}) {
  throw UnimplementedError('decr() has not been implemented.');
}