SameSitefinal

Cookie跨站可用性配置。

Cookie.sameSite的值,用于确定HTTP cookie是否来自其他站点。

有三个可能的值:laxstrictnone

属性

hashCode int
此对象的哈希码。
无setter继承
name String
final
runtimeType Type
对象的运行时类型表示。
无setter继承

方法

noSuchMethod(Invocation invocation) → dynamic
当访问不存在的方法或属性时被调用。
继承
toString() String
此对象的字符串表示。
覆盖

操作符

operator ==(Object other) bool
等于操作符。
继承

常量

lax → const SameSite
默认值,该值设置的cookie一般情况下不会在跨站请求中发送,除非用户导航到原始站点。
none → const SameSite
此值设置的cookie将在所有请求中发送。
strict → const SameSite
此值设置的cookie永远不会在跨站请求中发送。
values → const List<SameSite>