Input$SetupInput constructor
Implementation
factory Input$SetupInput({
required String configLocation,
required List<Input$StashConfigInput> stashes,
bool? sfwContentMode,
required String databaseFile,
required String generatedLocation,
required String cacheLocation,
required bool storeBlobsInDatabase,
required String blobsLocation,
}) => Input$SetupInput._({
r'configLocation': configLocation,
r'stashes': stashes,
if (sfwContentMode != null) r'sfwContentMode': sfwContentMode,
r'databaseFile': databaseFile,
r'generatedLocation': generatedLocation,
r'cacheLocation': cacheLocation,
r'storeBlobsInDatabase': storeBlobsInDatabase,
r'blobsLocation': blobsLocation,
});