secureCookies property

bool? secureCookies

Implementation

bool? get secureCookies => _jsObject.secureCookies;
void secureCookies=(bool? value)

If true and storeAuthStateInCookie is also enabled, MSAL adds the Secure flag to the browser cookie so it can only be sent over HTTPS.

Defaults to false.

Implementation

set secureCookies(bool? value) => _jsObject.secureCookies = value;