Input$ProgramUpdateInput constructor

Input$ProgramUpdateInput({
  1. DateTime? from,
  2. DateTime? to,
  3. Input$PictureInput? picture,
  4. Input$FullAddressInput? address,
  5. String? event,
  6. String? title,
  7. String? description,
  8. Input$ProgramBookingInput? booking,
  9. List<Input$ProgramTranslationInput>? translation,
})

Implementation

factory Input$ProgramUpdateInput({
  DateTime? from,
  DateTime? to,
  Input$PictureInput? picture,
  Input$FullAddressInput? address,
  String? event,
  String? title,
  String? description,
  Input$ProgramBookingInput? booking,
  List<Input$ProgramTranslationInput>? translation,
}) =>
    Input$ProgramUpdateInput._({
      if (from != null) r'from': from,
      if (to != null) r'to': to,
      if (picture != null) r'picture': picture,
      if (address != null) r'address': address,
      if (event != null) 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,
    });