signOut method

  1. @override
Future signOut()
  • Throw on sign-out error

Implementation

@override
Future signOut() async {
  var debugPrefix = '$runtimeType.signOut()';
  try {
    await _api.signOut();
  } catch (e) {
    throw '$debugPrefix:catch:$e';
  }
}