Input$WidgetIntegrationContentInput constructor

Input$WidgetIntegrationContentInput({
  1. bool? profile,
  2. bool? notification,
  3. bool? wallet,
  4. bool? challenge,
  5. bool? chat,
  6. bool? campaigns,
  7. bool? buttons,
  8. bool? badges,
  9. bool? leaderboard,
  10. bool? marketplace,
  11. bool? affiliate,
  12. bool? theme,
  13. String? marketplaceCoin,
})

Implementation

factory Input$WidgetIntegrationContentInput({
  bool? profile,
  bool? notification,
  bool? wallet,
  bool? challenge,
  bool? chat,
  bool? campaigns,
  bool? buttons,
  bool? badges,
  bool? leaderboard,
  bool? marketplace,
  bool? affiliate,
  bool? theme,
  String? marketplaceCoin,
}) =>
    Input$WidgetIntegrationContentInput._({
      if (profile != null) r'profile': profile,
      if (notification != null) r'notification': notification,
      if (wallet != null) r'wallet': wallet,
      if (challenge != null) r'challenge': challenge,
      if (chat != null) r'chat': chat,
      if (campaigns != null) r'campaigns': campaigns,
      if (buttons != null) r'buttons': buttons,
      if (badges != null) r'badges': badges,
      if (leaderboard != null) r'leaderboard': leaderboard,
      if (marketplace != null) r'marketplace': marketplace,
      if (affiliate != null) r'affiliate': affiliate,
      if (theme != null) r'theme': theme,
      if (marketplaceCoin != null) r'marketplaceCoin': marketplaceCoin,
    });