Input$ListCalendarListInput constructor

Input$ListCalendarListInput({
  1. int? maxResults,
  2. String? minAccessRole,
  3. String? pageToken,
  4. bool? showDeleted,
  5. bool? showHidden,
  6. String? syncToken,
})

Implementation

factory Input$ListCalendarListInput({
  int? maxResults,
  String? minAccessRole,
  String? pageToken,
  bool? showDeleted,
  bool? showHidden,
  String? syncToken,
}) =>
    Input$ListCalendarListInput._({
      if (maxResults != null) r'maxResults': maxResults,
      if (minAccessRole != null) r'minAccessRole': minAccessRole,
      if (pageToken != null) r'pageToken': pageToken,
      if (showDeleted != null) r'showDeleted': showDeleted,
      if (showHidden != null) r'showHidden': showHidden,
      if (syncToken != null) r'syncToken': syncToken,
    });