logOut method

Future<void> logOut()

Logs the LoginClient out. Also removes the credentials from the credentials storage.

Implementation

Future<void> logOut() async {
  await _logOutInternal();
  _logger('Successfully logged out and cleared the credentials.');
}