Input$InsertCalendarListInput constructor

Input$InsertCalendarListInput({
  1. required String id,
  2. String? backgroundColor,
  3. String? colorId,
  4. List<Input$InsertCalendarDefaultReminderInput>? defaultReminders,
  5. String? foregroundColor,
  6. bool? hidden,
  7. Input$InsertCalendarNotificationSettingsNotifInput? notificationSettings,
})

Implementation

factory Input$InsertCalendarListInput({
  required String id,
  String? backgroundColor,
  String? colorId,
  List<Input$InsertCalendarDefaultReminderInput>? defaultReminders,
  String? foregroundColor,
  bool? hidden,
  Input$InsertCalendarNotificationSettingsNotifInput? notificationSettings,
}) =>
    Input$InsertCalendarListInput._({
      r'id': id,
      if (backgroundColor != null) r'backgroundColor': backgroundColor,
      if (colorId != null) r'colorId': colorId,
      if (defaultReminders != null) r'defaultReminders': defaultReminders,
      if (foregroundColor != null) r'foregroundColor': foregroundColor,
      if (hidden != null) r'hidden': hidden,
      if (notificationSettings != null)
        r'notificationSettings': notificationSettings,
    });