Input$EventTranslationInput constructor

Input$EventTranslationInput({
  1. String? language,
  2. String? title,
  3. String? description,
  4. String? emailTemplate,
  5. String? emailSubject,
})

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,
    });