MoveItemRequest constructor

MoveItemRequest({
  1. String? itemKref,
  2. String? targetSpacePath,
})

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