name property

String? get name

Filters the cookies by name.

Implementation

String? get name => _wrapped.name;
set name (String? v)

Implementation

set name(String? v) {
  _wrapped.name = v;
}