copy method

void copy(
  1. ImageData another
)

Implementation

void copy(ImageData another) {
  fileName = another.fileName;
  filePath = another.filePath;
  amazonUrl = another.amazonUrl;
  progress = another.progress;
  state = another.state;
  isUploadError = another.isUploadError;
  imageUploadFolder = another.imageUploadFolder;
}