DownloadStartRequest constructor
DownloadStartRequest({
- String? modelId,
- DownloadPlanResult? plan,
- bool? skipRegistryUpdate,
Implementation
factory DownloadStartRequest({
$core.String? modelId,
DownloadPlanResult? plan,
$core.bool? skipRegistryUpdate,
}) {
final result = create();
if (modelId != null) result.modelId = modelId;
if (plan != null) result.plan = plan;
if (skipRegistryUpdate != null)
result.skipRegistryUpdate = skipRegistryUpdate;
return result;
}