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