exists method

Future<int> exists(
  1. List<String> keys
)

exists

Implementation

Future<int> exists(List<String> keys) async {
  return await _runWithRetryNew(() async {
    return (await RespCommandsTier1(_client!).exists(keys))
        .toInteger()
        .payload;
  });
}