set static method
void
set(})
Set a cookie
Implementation
static void set(
String name,
String value, {
bool httpOnly = true,
bool secure = false,
String path = '/',
Duration? maxAge,
DateTime? expires,
String sameSite = 'Lax',
}) {
_response.setCookie(
name,
value,
path: path,
httpOnly: httpOnly,
secure: secure,
maxAge: maxAge?.inSeconds,
expires: expires,
sameSite: sameSite,
);
}