RemoveCallbackDetails constructor
RemoveCallbackDetails({
- required String url,
- required String name,
- required String storeId,
- CookiePartitionKey? partitionKey,
Implementation
RemoveCallbackDetails({
/// The URL associated with the cookie that's been removed.
required String url,
/// The name of the cookie that's been removed.
required String name,
/// The ID of the cookie store from which the cookie was removed.
required String storeId,
/// The partition key for reading or modifying cookies with the Partitioned
/// attribute.
CookiePartitionKey? partitionKey,
}) : _wrapped = $js.RemoveCallbackDetails(
url: url,
name: name,
storeId: storeId,
partitionKey: partitionKey?.toJS,
);