removeCredentials static method

void removeCredentials(
  1. UserId userId
)

Removes Credentials identified by the provided UserId from the browser's storage.

Implementation

static void removeCredentials(UserId userId) {
  web.window.localStorage.removeItem('credentials_$userId');
}