CopyTranslationRequest constructor
Implementation
factory CopyTranslationRequest({
$core.String? id,
$core.String? projectId,
$core.String? key,
}) {
final result = create();
if (id != null) result.id = id;
if (projectId != null) result.projectId = projectId;
if (key != null) result.key = key;
return result;
}