Input$AddGameGroupInput constructor
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,
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,
});