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