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