Provides a firebase_dart
auth handler for sign in with Apple using the native Apple API.
Usage
Initialize FirebaseDartFlutter
with the auth handler.
await FirebaseDartFlutter.setup(
socialAuthHandlers: [
AppleAuthHandler(),
],
);
Start sign in process:
await auth.signInWithPopup(OAuthProvider('apple.com'));