storeId property

String? get storeId

The ID of the cookie store in which to look for the cookie. By default, the current execution context's cookie store will be used.

Implementation

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

Implementation

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