ResolveLocationResponse constructor
Implementation
factory ResolveLocationResponse({
$core.String? location,
Kref? resolvedKref,
$core.String? artifactName,
}) {
final result = create();
if (location != null) result.location = location;
if (resolvedKref != null) result.resolvedKref = resolvedKref;
if (artifactName != null) result.artifactName = artifactName;
return result;
}