loginWithApple method

Future<Result<bool, Exception>> loginWithApple()

Implementation

Future<Result<bool, Exception>> loginWithApple() async {
  return getLoginResult(() async {
    return await _flutterAuthApi.loginWithApple(_appName);
  });
}