storeId property

String? get storeId

The cookie store to retrieve cookies from. If omitted, 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;
}