signOut method

Future<void> signOut()

Signs out the current user from all accounts: email, Google, and Facebook.

Implementation

Future<void> signOut() async {
  await signOutEmail();
  await signOutGoogle();
  await signOutFacebook();
  print('Logged out of all accounts');
}