postLogoutRedirectUri property

String? postLogoutRedirectUri

Implementation

String? get postLogoutRedirectUri => _jsObject.postLogoutRedirectUri;
void postLogoutRedirectUri=(String? value)

The redirect URI where the window navigates after a successful logout.

Set to null to disable post logout redirect.

Defaults to window.location.href.

Implementation

set postLogoutRedirectUri(String? value) =>
    _jsObject.postLogoutRedirectUri = value;