uploadPhotoToEntity static method

UploadPhoto uploadPhotoToEntity(
  1. UploadPhotoResponse response
)

Implementation

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