Input$OutboundContentPushInput constructor

Input$OutboundContentPushInput({
  1. Input$PictureInput? picture,
  2. String? title,
  3. String? description,
})

Implementation

factory Input$OutboundContentPushInput({
  Input$PictureInput? picture,
  String? title,
  String? description,
}) =>
    Input$OutboundContentPushInput._({
      if (picture != null) r'picture': picture,
      if (title != null) r'title': title,
      if (description != null) r'description': description,
    });