Input$EventSegmentInput constructor

Input$EventSegmentInput({
  1. String? title,
  2. String? description,
  3. DateTime? date,
  4. Input$PictureInput? picture,
  5. List<Input$EventSegmentTranslateInput>? translation,
})

Implementation

factory Input$EventSegmentInput({
  String? title,
  String? description,
  DateTime? date,
  Input$PictureInput? picture,
  List<Input$EventSegmentTranslateInput>? translation,
}) =>
    Input$EventSegmentInput._({
      if (title != null) r'title': title,
      if (description != null) r'description': description,
      if (date != null) r'date': date,
      if (picture != null) r'picture': picture,
      if (translation != null) r'translation': translation,
    });