exists method

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

Implementation

Future<RespType> exists(List<String> keys) async {
  return tier0.execute([
    'EXISTS',
    ...keys,
  ]);
}