signOut method
Implementation
Future<void> signOut() async {
try {
verbose('Signing out...');
await _firebase.auth().signOut().toDart;
} catch (e) {
error('Sign out failed: $e');
_updateState(AuthState.withError(_parseFirebaseError(e)));
}
}