signOut method

Future<void> signOut()

Implementation

Future<void> signOut() async {
  try {
    _setLoading(true);
    await _auth.signOut();
  } catch (e) {
    rethrow;
  } finally {
    _setLoading(false);
  }
}