set static method
void
set(})
Implementation
static void set(
String name,
String value, {
String? domain,
String? path,
DateTime? expires,
Duration? maxAge,
bool? secure,
}) => cookie.set(
name,
value,
expires: expires,
maxAge: maxAge,
path: path,
domain: domain,
);