Input$EventSegmentInput constructor
Input$EventSegmentInput({
- String? title,
- String? description,
- DateTime? date,
- Input$PictureInput? picture,
- 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,
});