name property
String?
get
name
The name of the cookie. Empty by default if omitted.
Implementation
String? get name => _wrapped.name;
set
name
(String? v)
Implementation
set name(String? v) {
_wrapped.name = v;
}