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. List<Enum$LandingPageTypeEnum>? pages,
})

Implementation

factory Input$WidgetIntegrationContentInput({
  bool? profile,
  bool? notification,
  bool? wallet,
  bool? challenge,
  bool? chat,
  bool? campaigns,
  bool? buttons,
  List<Enum$LandingPageTypeEnum>? pages,
}) =>
    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 (pages != null) r'pages': pages,
    });