hvals method

Future<RespType> hvals(
  1. String key
)

Implementation

Future<RespType> hvals(String key) async {
  return tier0.execute([
    'HVALS',
    key,
  ]);
}