partitionKey property
CookiePartitionKey?
get
partitionKey
The partition key for reading or modifying cookies with the Partitioned attribute.
Implementation
CookiePartitionKey? get partitionKey =>
_wrapped.partitionKey?.let(CookiePartitionKey.fromJS);
set
partitionKey
(CookiePartitionKey? v)
Implementation
set partitionKey(CookiePartitionKey? v) {
_wrapped.partitionKey = v?.toJS;
}