OnChangedChangeInfo constructor

OnChangedChangeInfo({
  1. required bool removed,
  2. required Cookie cookie,
  3. required OnChangedCause cause,
})

Implementation

OnChangedChangeInfo({
  /// True if a cookie was removed.
  required bool removed,

  /// Information about the cookie that was set or removed.
  required Cookie cookie,

  /// The underlying reason behind the cookie's change.
  required OnChangedCause cause,
}) : _wrapped = $js.OnChangedChangeInfo(
        removed: removed,
        cookie: cookie.toJS,
        cause: cause.toJS,
      );