hkeys method

Future<RespType> hkeys(
  1. String key
)

Implementation

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