jsonClear method

Future<int> jsonClear(
  1. String key, {
  2. String path = '\$',
})

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;
  });
}