hexists method

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

hexists

Implementation

Future<bool> hexists(String key, String field) async {
  return await _runWithRetryNew(() async {
    return (await RespCommandsTier1(_client!).hexists(key, field))
            .toInteger()
            .payload ==
        1;
  });
}