exists static method

bool exists(
  1. String id
)

Checks if there exists a cookie with id.

Implementation

static bool exists(String id) => _storage.get(id) != null;