Input$ProgramInput constructor
Input$ProgramInput({
- required DateTime from,
- required DateTime to,
- Input$PictureInput? picture,
- Input$FullAddressInput? address,
- required String event,
- String? title,
- String? description,
- Input$ProgramBookingInput? booking,
- List<
Input$ProgramTranslationInput> ? translation,
Implementation
factory Input$ProgramInput({
required DateTime from,
required DateTime to,
Input$PictureInput? picture,
Input$FullAddressInput? address,
required String event,
String? title,
String? description,
Input$ProgramBookingInput? booking,
List<Input$ProgramTranslationInput>? translation,
}) =>
Input$ProgramInput._({
r'from': from,
r'to': to,
if (picture != null) r'picture': picture,
if (address != null) r'address': address,
r'event': event,
if (title != null) r'title': title,
if (description != null) r'description': description,
if (booking != null) r'booking': booking,
if (translation != null) r'translation': translation,
});