Skip to content

Instantly share code, notes, and snippets.

@sbis04
Created September 9, 2020 11:38
Show Gist options
  • Save sbis04/f17475729f58b3ab71392b527a8c9452 to your computer and use it in GitHub Desktop.
Save sbis04/f17475729f58b3ab71392b527a8c9452 to your computer and use it in GitHub Desktop.
Future<String> signOut() async {
await _auth.signOut();
SharedPreferences prefs = await SharedPreferences.getInstance();
prefs.setBool('auth', false);
uid = null;
userEmail = null;
return 'User signed out';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment