hget method

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

HGet get value in hash

Implementation

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