updateAuthenticated method

void updateAuthenticated(
  1. AuthenticationInfo? info
)

Updates the authentication information for the session. This is typically done by the Server when the user is authenticated. Using this method modifies the authenticated user for this session.

Implementation

void updateAuthenticated(AuthenticationInfo? info) {
  _authenticated = info;
}