Input$EventSegmentTranslateInput constructor

Input$EventSegmentTranslateInput({
  1. String? language,
  2. String? title,
  3. String? description,
})

Implementation

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