exists method

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

Returns the number of values exists for the given keys

Implementation

Future<int> exists(List<String> keys) async {
  return _getInteger(await _execCmd(['EXISTS', ...keys]));
}