CookiePartitionKey constructor

CookiePartitionKey({
  1. String? topLevelSite,
})

Implementation

CookiePartitionKey(
    {
    /// The top-level site the partitioned cookie is available in.
    String? topLevelSite})
    : _wrapped = $js.CookiePartitionKey(topLevelSite: topLevelSite);