loginWithApple static method
Apple Sign In - returns user data without saving
Implementation
static Future<Map<String, dynamic>> loginWithApple({
required String identityToken,
String? authorizationCode,
String? userData,
}) async {
return AppleProvider.authenticate(
identityToken: identityToken,
authorizationCode: authorizationCode,
userData: userData,
clientId: config.appleClientId,
teamId: config.appleTeamId,
keyId: config.appleKeyId,
privateKey: config.applePrivateKey,
);
}