read method

String? read(
  1. String name
)

Reads one cookie by name.

Implementation

String? read(String name) {
  return readAll()[name];
}