jsonDel method
jsonDel
Implementation
Future<int> jsonDel(String key, {String path = '\$'}) async {
return await _runWithRetryNew(() async {
return (await RespCommandsTier1(_client!).jsonDel(key: key, path: path))
.toInteger()
.payload;
});
}