Input$UpdateGoogleCalendarInput constructor

Input$UpdateGoogleCalendarInput({
  1. String? summary,
  2. String? description,
  3. String? location,
  4. String? timeZone,
})

Implementation

factory Input$UpdateGoogleCalendarInput({
  String? summary,
  String? description,
  String? location,
  String? timeZone,
}) =>
    Input$UpdateGoogleCalendarInput._({
      if (summary != null) r'summary': summary,
      if (description != null) r'description': description,
      if (location != null) r'location': location,
      if (timeZone != null) r'timeZone': timeZone,
    });