uploadPhotoToEntity static method
Implementation
static domain.UploadPhoto uploadPhotoToEntity(infra.UploadPhotoResponse response) {
return domain.UploadPhoto(
ok: response.ok,
imageUrl: response.imageUrl,
message: response.message,
);
}