Input$InsertGoogleCalendarInput constructor

Input$InsertGoogleCalendarInput({
  1. String? summary,
  2. String? description,
  3. String? location,
  4. String? timeZone,
  5. required String kind,
  6. String? etag,
  7. String? id,
  8. Input$GoogleCalendarConferencePropertiesInput? conferenceProperties,
})

Implementation

factory Input$InsertGoogleCalendarInput({
  String? summary,
  String? description,
  String? location,
  String? timeZone,
  required String kind,
  String? etag,
  String? id,
  Input$GoogleCalendarConferencePropertiesInput? conferenceProperties,
}) =>
    Input$InsertGoogleCalendarInput._({
      if (summary != null) r'summary': summary,
      if (description != null) r'description': description,
      if (location != null) r'location': location,
      if (timeZone != null) r'timeZone': timeZone,
      r'kind': kind,
      if (etag != null) r'etag': etag,
      if (id != null) r'id': id,
      if (conferenceProperties != null)
        r'conferenceProperties': conferenceProperties,
    });