sameSite property

CookieSameSite get sameSite

Implementation

CookieSameSite get sameSite =>
    CookieSameSite.fromValue(js_util.getProperty(this, 'sameSite'));
set sameSite (CookieSameSite newValue)

Implementation

set sameSite(CookieSameSite newValue) {
  js_util.setProperty(this, 'sameSite', newValue.value);
}