OnChangedChangeInfo constructor
OnChangedChangeInfo({
- required bool removed,
- required Cookie cookie,
- 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,
);