Input$GameGroupInput constructor
Input$GameGroupInput({
- required String name,
- required String code,
- Input$PictureInput? picture,
- bool? enable,
- List<
String> ? games, - Input$GamePointInput? point,
- Input$GameIntegrationLeaderboardInput? leaderboard,
- List<
Input$GameIntegrationRewardsSchedularInput> ? rewardsSchedular,
Implementation
factory Input$GameGroupInput({
required String name,
required String code,
Input$PictureInput? picture,
bool? enable,
List<String>? games,
Input$GamePointInput? point,
Input$GameIntegrationLeaderboardInput? leaderboard,
List<Input$GameIntegrationRewardsSchedularInput>? rewardsSchedular,
}) =>
Input$GameGroupInput._({
r'name': name,
r'code': code,
if (picture != null) r'picture': picture,
if (enable != null) r'enable': enable,
if (games != null) r'games': games,
if (point != null) r'point': point,
if (leaderboard != null) r'leaderboard': leaderboard,
if (rewardsSchedular != null) r'rewardsSchedular': rewardsSchedular,
});