Input$AppFollowTopChartInput constructor

Input$AppFollowTopChartInput({
  1. DateTime? date,
  2. required String country,
  3. String? genre,
  4. List<Input$AppFollowTopChartLeaderboardInput>? leaderboard,
})

Implementation

factory Input$AppFollowTopChartInput({
  DateTime? date,
  required String country,
  String? genre,
  List<Input$AppFollowTopChartLeaderboardInput>? leaderboard,
}) =>
    Input$AppFollowTopChartInput._({
      if (date != null) r'date': date,
      r'country': country,
      if (genre != null) r'genre': genre,
      if (leaderboard != null) r'leaderboard': leaderboard,
    });