Input$OutboundContentWidgetInput constructor

Input$OutboundContentWidgetInput({
  1. Input$PictureInput? picture,
  2. String? title,
  3. String? description,
  4. List<Input$OutboundContentWidgetTranslationInput>? translation,
  5. Input$OutboundContentWidgetCallToActionInput? callToAction,
})

Implementation

factory Input$OutboundContentWidgetInput({
  Input$PictureInput? picture,
  String? title,
  String? description,
  List<Input$OutboundContentWidgetTranslationInput>? translation,
  Input$OutboundContentWidgetCallToActionInput? callToAction,
}) =>
    Input$OutboundContentWidgetInput._({
      if (picture != null) r'picture': picture,
      if (title != null) r'title': title,
      if (description != null) r'description': description,
      if (translation != null) r'translation': translation,
      if (callToAction != null) r'callToAction': callToAction,
    });