RemoveCallbackDetails constructor

RemoveCallbackDetails({
  1. required String url,
  2. required String name,
  3. required String storeId,
  4. 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,
      );