MoveItemRequest constructor
Implementation
factory MoveItemRequest({
$core.String? itemKref,
$core.String? targetSpacePath,
}) {
final result = create();
if (itemKref != null) result.itemKref = itemKref;
if (targetSpacePath != null) result.targetSpacePath = targetSpacePath;
return result;
}