mapValues method

Future<RedisReply> mapValues(
  1. String key
)

HVALS - Gets the values of a Hash

Implementation

Future<RedisReply> mapValues(String key) async {
  return command('HVALS', [key]);
}