isSignIn method

  1. @override
Future<bool> isSignIn()
override

Implementation

@override
Future<bool> isSignIn() {
  try {
    return repository.isSignIn();
  } catch (_) {
    return Future.error("$_");
  }
}