Input$GoogleCalendarPatchEventInput constructor

Input$GoogleCalendarPatchEventInput({
  1. bool? alwaysIncludeEmail,
  2. int? conferenceDataVersion,
  3. int? maxAttendees,
  4. bool? sendNotifications,
  5. String? sendUpdates,
  6. bool? supportsAttachments,
})

Implementation

factory Input$GoogleCalendarPatchEventInput({
  bool? alwaysIncludeEmail,
  int? conferenceDataVersion,
  int? maxAttendees,
  bool? sendNotifications,
  String? sendUpdates,
  bool? supportsAttachments,
}) =>
    Input$GoogleCalendarPatchEventInput._({
      if (alwaysIncludeEmail != null)
        r'alwaysIncludeEmail': alwaysIncludeEmail,
      if (conferenceDataVersion != null)
        r'conferenceDataVersion': conferenceDataVersion,
      if (maxAttendees != null) r'maxAttendees': maxAttendees,
      if (sendNotifications != null) r'sendNotifications': sendNotifications,
      if (sendUpdates != null) r'sendUpdates': sendUpdates,
      if (supportsAttachments != null)
        r'supportsAttachments': supportsAttachments,
    });