signOut method
Signs the current user out.
Implementation
Future signOut() async {
try{
await _auth.signOut();
print('signed out');
return false;
} catch (e) {
print(e.toString());
return null;
}
}
Signs the current user out.
Future signOut() async {
try{
await _auth.signOut();
print('signed out');
return false;
} catch (e) {
print(e.toString());
return null;
}
}