Input$AddGameGroupInput constructor

Input$AddGameGroupInput({
  1. required Input$TargetACIInput target,
  2. required String name,
  3. required String code,
  4. Input$PictureInput? picture,
  5. List<String>? games,
  6. Input$GamePointInput? point,
  7. Input$GameIntegrationLeaderboardInput? leaderboard,
  8. List<Input$GameIntegrationRewardsSchedularInput>? rewardsSchedular,
})

Implementation

factory Input$AddGameGroupInput({
  required Input$TargetACIInput target,
  required String name,
  required String code,
  Input$PictureInput? picture,
  List<String>? games,
  Input$GamePointInput? point,
  Input$GameIntegrationLeaderboardInput? leaderboard,
  List<Input$GameIntegrationRewardsSchedularInput>? rewardsSchedular,
}) =>
    Input$AddGameGroupInput._({
      r'target': target,
      r'name': name,
      r'code': code,
      if (picture != null) r'picture': picture,
      if (games != null) r'games': games,
      if (point != null) r'point': point,
      if (leaderboard != null) r'leaderboard': leaderboard,
      if (rewardsSchedular != null) r'rewardsSchedular': rewardsSchedular,
    });