signOut method

Future<void> signOut()

This is used for the user to signOut of the application and clear the cached tokens.

Implementation

Future<void> signOut() async {
  _signInUserSession = null;
  await clearCachedTokens();
}