ResolveLocationResponse constructor

ResolveLocationResponse({
  1. String? location,
  2. Kref? resolvedKref,
  3. String? artifactName,
})

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;
}