GetAllDetails constructor
GetAllDetails({})
Implementation
GetAllDetails({
/// Restricts the retrieved cookies to those that would match the given URL.
String? url,
/// Filters the cookies by name.
String? name,
/// Restricts the retrieved cookies to those whose domains match or are
/// subdomains of this one.
String? domain,
/// Restricts the retrieved cookies to those whose path exactly matches this
/// string.
String? path,
/// Filters the cookies by their Secure property.
bool? secure,
/// Filters out session vs. persistent cookies.
bool? session,
/// The cookie store to retrieve cookies from. If omitted, the current
/// execution context's cookie store will be used.
String? storeId,
/// The partition key for reading or modifying cookies with the Partitioned
/// attribute.
CookiePartitionKey? partitionKey,
}) : _wrapped = $js.GetAllDetails(
url: url,
name: name,
domain: domain,
path: path,
secure: secure,
session: session,
storeId: storeId,
partitionKey: partitionKey?.toJS,
);