signInWithPlayGames method

Future<AuthResponse<T>> signInWithPlayGames({
  1. Object? args,
  2. String? id,
  3. bool notifiable = true,
})
inherited

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,
  );
}