Input$GoogleCalendarInstancesInput constructor

Input$GoogleCalendarInstancesInput({
  1. required String calendarId,
  2. String? eventId,
  3. bool? alwaysIncludeEmail,
  4. int? maxAttendees,
  5. int? maxResults,
  6. String? originalStart,
  7. String? pageToken,
  8. bool? showDeleted,
  9. String? timeMax,
  10. String? timeMin,
  11. String? timeZone,
})

Implementation

factory Input$GoogleCalendarInstancesInput({
  required String calendarId,
  String? eventId,
  bool? alwaysIncludeEmail,
  int? maxAttendees,
  int? maxResults,
  String? originalStart,
  String? pageToken,
  bool? showDeleted,
  String? timeMax,
  String? timeMin,
  String? timeZone,
}) =>
    Input$GoogleCalendarInstancesInput._({
      r'calendarId': calendarId,
      if (eventId != null) r'eventId': eventId,
      if (alwaysIncludeEmail != null)
        r'alwaysIncludeEmail': alwaysIncludeEmail,
      if (maxAttendees != null) r'maxAttendees': maxAttendees,
      if (maxResults != null) r'maxResults': maxResults,
      if (originalStart != null) r'originalStart': originalStart,
      if (pageToken != null) r'pageToken': pageToken,
      if (showDeleted != null) r'showDeleted': showDeleted,
      if (timeMax != null) r'timeMax': timeMax,
      if (timeMin != null) r'timeMin': timeMin,
      if (timeZone != null) r'timeZone': timeZone,
    });