get static method

String? get(
  1. String id
)

Returns the content of the cookie with id. Returns null if there is no Cookie.

Implementation

static String? get(String id) => _storage.get(id);