Input$OutboundContentEmailInput constructor

Input$OutboundContentEmailInput({
  1. String? subject,
  2. String? preview,
  3. String? content,
  4. Enum$OutboundEditorEnum? editor,
})

Implementation

factory Input$OutboundContentEmailInput({
  String? subject,
  String? preview,
  String? content,
  Enum$OutboundEditorEnum? editor,
}) =>
    Input$OutboundContentEmailInput._({
      if (subject != null) r'subject': subject,
      if (preview != null) r'preview': preview,
      if (content != null) r'content': content,
      if (editor != null) r'editor': editor,
    });