Input$CleanGeneratedInput constructor
Input$CleanGeneratedInput({ - bool? blobFiles,
- bool? sprites,
- bool? screenshots,
- bool? transcodes,
- bool? markers,
- bool? imageThumbnails,
- 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,
});