Input$GameGroupInput constructor

Input$GameGroupInput({
  1. required String name,
  2. required String code,
  3. Input$PictureInput? picture,
  4. bool? enable,
  5. List<String>? games,
  6. Input$GamePointInput? point,
  7. Input$GameIntegrationLeaderboardInput? leaderboard,
  8. 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,
    });