Input$ProgramInput constructor

Input$ProgramInput({
  1. required DateTime from,
  2. required DateTime to,
  3. Input$PictureInput? picture,
  4. Input$FullAddressInput? address,
  5. required String event,
  6. String? title,
  7. String? description,
  8. Input$ProgramBookingInput? booking,
  9. 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,
    });