signOut method

Future signOut ()

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;
  }
}