signInWithApple method

Future<User?> signInWithApple()

Implementation

Future<User?> signInWithApple() async {
  if (kIsWeb) {
    return signInWithAppleOnWeb();
  } else {
    if (Platform.isIOS) {
      return signInWithAppleOnApple();
    } else {
      return signInWithProvider();
    }
  }
}