value property

String get value

Implementation

String get value {
  return switch (this) {
    SameSiteCookie.strict => 'Strict',
    SameSiteCookie.lax => 'Lax',
    SameSiteCookie.none => 'None',
  };
}