signInWithApple method
Implementation
Future<AuthResponse<T>> signInWithApple({
Object? args,
String? id,
bool notifiable = true,
}) {
return _signInWithOAuth(
provider: 'APPLE',
doneMsg: msg.signInWithApple.done,
failureMsg: msg.signInWithApple.failure,
signIn: () => delegate.signInWithApple(),
args: args,
id: id,
notifiable: notifiable,
);
}