jsonDel method

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

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