Input$OutboundContentEmailInput constructor
Input$OutboundContentEmailInput({
- String? subject,
- String? preview,
- String? content,
- 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,
});