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