save method

File save()

Saves this file on Uploadcare (marks it to be kept).

This does not mutate the current {@code File} instance, but creates a new one.

@return New file resource instance

Implementation

File save() {
  client.saveFile(fileData.uuid);
  return update();
}