Input$GoogleCalendarEventInput constructor

Input$GoogleCalendarEventInput({
  1. required Input$GoogleCalendarEventStartEndInput end,
  2. required Input$GoogleCalendarEventStartEndInput start,
  3. String? description,
  4. String? summary,
})

Implementation

factory Input$GoogleCalendarEventInput({
  required Input$GoogleCalendarEventStartEndInput end,
  required Input$GoogleCalendarEventStartEndInput start,
  String? description,
  String? summary,
}) =>
    Input$GoogleCalendarEventInput._({
      r'end': end,
      r'start': start,
      if (description != null) r'description': description,
      if (summary != null) r'summary': summary,
    });