Input$EventTranslationInput constructor
Input$EventTranslationInput({})
Implementation
factory Input$EventTranslationInput({
String? language,
String? title,
String? description,
String? emailTemplate,
String? emailSubject,
}) =>
Input$EventTranslationInput._({
if (language != null) r'language': language,
if (title != null) r'title': title,
if (description != null) r'description': description,
if (emailTemplate != null) r'emailTemplate': emailTemplate,
if (emailSubject != null) r'emailSubject': emailSubject,
});