hexists method

Future<RespType> hexists(
  1. String key,
  2. String field
)

Implementation

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