Input$EventInviteUpdateInput constructor

Input$EventInviteUpdateInput({
  1. DateTime? from,
  2. DateTime? to,
  3. String? title,
  4. String? program,
  5. String? invitee,
  6. Input$EventInvitorInput? invitor,
})

Implementation

factory Input$EventInviteUpdateInput({
  DateTime? from,
  DateTime? to,
  String? title,
  String? program,
  String? invitee,
  Input$EventInvitorInput? invitor,
}) =>
    Input$EventInviteUpdateInput._({
      if (from != null) r'from': from,
      if (to != null) r'to': to,
      if (title != null) r'title': title,
      if (program != null) r'program': program,
      if (invitee != null) r'invitee': invitee,
      if (invitor != null) r'invitor': invitor,
    });