hset method

  1. @override
Future<void> hset(
  1. String key,
  2. CacheBody cell, {
  3. Context? ctx,
})
override

HSet put value in hash

Implementation

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