signInWithGoogle method

  1. @override
Future<Response<Credential>> signInWithGoogle()
override

Implementation

@override
Future<Response<Credential>> signInWithGoogle() {
  try {
    return repository.signInWithGoogle();
  } catch (_) {
    return Future.error("$_");
  }
}