hdel method
------------------------------ Hash ------------------------------ hdel
Implementation
/// hdel
Future<int> hdel(String key, List<String> fields) async {
return await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!).hdel(key, fields))
.toInteger()
.payload;
});
}