Input$WidgetIntegrationInput constructor

Input$WidgetIntegrationInput({
  1. String? theme,
  2. Input$PictureInput? picture,
  3. String? icon,
  4. bool? active,
  5. Input$WidgetIntegrationContentInput? content,
  6. Input$TargetACIInput? target,
})

Implementation

factory Input$WidgetIntegrationInput({
  String? theme,
  Input$PictureInput? picture,
  String? icon,
  bool? active,
  Input$WidgetIntegrationContentInput? content,
  Input$TargetACIInput? target,
}) =>
    Input$WidgetIntegrationInput._({
      if (theme != null) r'theme': theme,
      if (picture != null) r'picture': picture,
      if (icon != null) r'icon': icon,
      if (active != null) r'active': active,
      if (content != null) r'content': content,
      if (target != null) r'target': target,
    });