Input$CleanGeneratedInput constructor

Input$CleanGeneratedInput({
  1. bool? blobFiles,
  2. bool? sprites,
  3. bool? screenshots,
  4. bool? transcodes,
  5. bool? markers,
  6. bool? imageThumbnails,
  7. bool? dryRun,
})

Implementation

factory Input$CleanGeneratedInput({
  bool? blobFiles,
  bool? sprites,
  bool? screenshots,
  bool? transcodes,
  bool? markers,
  bool? imageThumbnails,
  bool? dryRun,
}) => Input$CleanGeneratedInput._({
  if (blobFiles != null) r'blobFiles': blobFiles,
  if (sprites != null) r'sprites': sprites,
  if (screenshots != null) r'screenshots': screenshots,
  if (transcodes != null) r'transcodes': transcodes,
  if (markers != null) r'markers': markers,
  if (imageThumbnails != null) r'imageThumbnails': imageThumbnails,
  if (dryRun != null) r'dryRun': dryRun,
});