moveTo method
Moves this Item to another Project's Space while preserving its kref.
Implementation
Future<Item> moveTo(String targetSpacePath, {String? deletionGuardId}) async {
final response = await client.moveItem(
kref.uri,
targetSpacePath,
deletionGuardId: deletionGuardId,
);
return Item(response, client);
}